當前位置: 首頁>>代碼示例>>C#>>正文


C# Form.Scale方法代碼示例

本文整理匯總了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
 }
開發者ID:krosti,項目名稱:octo-billing,代碼行數:29,代碼來源:Class3.cs

示例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);
            }
        }
開發者ID:0x9ae76c,項目名稱:ImageGlass,代碼行數:13,代碼來源:DPIScaling.cs

示例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
開發者ID:BrzVlad,項目名稱:mono,代碼行數:67,代碼來源:FormHandleTest.cs


注:本文中的System.Windows.Forms.Form.Scale方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。