本文整理汇总了C#中System.Windows.Forms.Form.Scale方法的典型用法代码示例。如果您正苦于以下问题:C# Form.Scale方法的具体用法?C# Form.Scale怎么用?C# Form.Scale使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Windows.Forms.Form
的用法示例。
在下文中一共展示了Form.Scale方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ResizeForm
public void ResizeForm(Form ObjForm, int DesignerHeight, int DesignerWidth)
{
#region Code for Resizing and Font Change According to Resolution
//Specify Here the Resolution Y component in which this form is designed
//For Example if the Form is Designed at 800 * 600 Resolution then DesignerHeight=600
int i_StandardHeight = DesignerHeight;
//Specify Here the Resolution X component in which this form is designed
//For Example if the Form is Designed at 800 * 600 Resolution then DesignerWidth=800
int i_StandardWidth = DesignerWidth;
int i_PresentHeight = Screen.PrimaryScreen.Bounds.Height;//Present Resolution Height
int i_PresentWidth = Screen.PrimaryScreen.Bounds.Width;//Presnet Resolution Width
f_HeightRatio = (float)((float)i_PresentHeight / (float)i_StandardHeight);
f_WidthRatio = (float)((float)i_PresentWidth / (float)i_StandardWidth);
ObjForm.AutoScaleMode = AutoScaleMode.None;//Make the Autoscale Mode=None
ObjForm.Scale(new SizeF(f_WidthRatio, f_HeightRatio));
foreach (Control c in ObjForm.Controls)
{
if (c.HasChildren)
{
ResizeControlStore(c);
}
else
{
c.Font = new Font(c.Font.FontFamily, c.Font.Size * f_HeightRatio, c.Font.Style, c.Font.Unit, ((byte)(0)));
}
}
ObjForm.Font = new Font(ObjForm.Font.FontFamily, ObjForm.Font.Size * f_HeightRatio, ObjForm.Font.Style, ObjForm.Font.Unit, ((byte)(0)));
#endregion
}
示例2: HandleDpiChanged
public static void HandleDpiChanged(int oldDpi, int currentDpi, Form f)
{
if (oldDpi != 0)
{
float scaleFactor = (float)currentDpi / oldDpi;
//the default scaling method of the framework
f.Scale(new SizeF(scaleFactor, scaleFactor));
//fonts are not scaled automatically so we need to handle this manually
ScaleFontForControl(f, scaleFactor);
}
}
示例3: TestPublicMethods
//.........这里部分代码省略.........
//c.PreProcessControlMessage ???
//c.PreProcessMessage ???
c.RectangleToClient (new Rectangle (0, 0, 100, 100));
Assert.IsTrue (c.IsHandleCreated, "A20");
c.Dispose ();
c = new Form ();
c.RectangleToScreen (new Rectangle (0, 0, 100, 100));
Assert.IsTrue (c.IsHandleCreated, "A21");
c.Dispose ();
c = new Form ();
c.Refresh ();
Assert.IsFalse (c.IsHandleCreated, "A22");
c.ResetBackColor ();
Assert.IsFalse (c.IsHandleCreated, "A23");
c.ResetBindings ();
Assert.IsFalse (c.IsHandleCreated, "A24");
c.ResetCursor ();
Assert.IsFalse (c.IsHandleCreated, "A25");
c.ResetFont ();
Assert.IsFalse (c.IsHandleCreated, "A26");
c.ResetForeColor ();
Assert.IsFalse (c.IsHandleCreated, "A27");
c.ResetImeMode ();
Assert.IsFalse (c.IsHandleCreated, "A28");
c.ResetRightToLeft ();
Assert.IsFalse (c.IsHandleCreated, "A29");
c.ResetText ();
Assert.IsFalse (c.IsHandleCreated, "A30");
c.SuspendLayout ();
Assert.IsFalse (c.IsHandleCreated, "A31");
c.ResumeLayout ();
Assert.IsFalse (c.IsHandleCreated, "A32");
c.Scale (new SizeF (1.5f, 1.5f));
Assert.IsFalse (c.IsHandleCreated, "A33");
c.Select ();
Assert.IsTrue (c.IsHandleCreated, "A34");
c.Dispose ();
c = new Form ();
c.SelectNextControl (new Control (), true, true, true, true);
Assert.IsFalse (c.IsHandleCreated, "A35");
c.SetBounds (0, 0, 100, 100);
Assert.IsFalse (c.IsHandleCreated, "A36");
c.Update ();
Assert.IsFalse (c.IsHandleCreated, "A37");
// Form
c.Activate ();
Assert.IsFalse (c.IsHandleCreated, "F1");
c.AddOwnedForm (new Form ());
Assert.IsFalse (c.IsHandleCreated, "F2");
c.Close ();
Assert.IsFalse (c.IsHandleCreated, "F3");
c.Hide ();
Assert.IsFalse (c.IsHandleCreated, "F4");
c.LayoutMdi (MdiLayout.Cascade);
Assert.IsFalse (c.IsHandleCreated, "F5");
#if !MONO