1. 程式人生 > >C#上位機開發(二)—— Hello,World

C#上位機開發(二)—— Hello,World

 1 /*@filename:Form1.Designer.cs */
 2 
 3 namespace HelloWorld
 4 {
 5     partial class Form1
 6     {
 7         /// <summary>
 8         /// 必需的設計器變數。
 9         /// </summary>
10         private System.ComponentModel.IContainer components = null;
11 
12         /// <summary>
13         /// 清理所有正在使用的資源。
14 /// </summary> 15 /// <param name="disposing">如果應釋放託管資源,為 true;否則為 false。</param> 16 protected override void Dispose(bool disposing) 17 { 18 if (disposing && (components != null)) 19 { 20 components.Dispose();
21 } 22 base.Dispose(disposing); 23 } 24 25 #region Windows 窗體設計器生成的程式碼 26 27 /// <summary> 28 /// 設計器支援所需的方法 - 不要修改 29 /// 使用程式碼編輯器修改此方法的內容。 30 /// </summary> 31 private void InitializeComponent() 32 { 33 this
.SuspendLayout(); 34 // 35 // Form1 36 // 37 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); 38 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 39 this.ClientSize = new System.Drawing.Size(418, 331); 40 this.Name = "Form1"; 41 this.Text = "Form1"; 42 this.Load += new System.EventHandler(this.Form1_Load); 43 this.ResumeLayout(false); 44 45 } 46 #endregion 47 } 48 }