您好,登錄后才能下訂單哦!
這篇文章主要講解了“如何用C#開發WinForm”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“如何用C#開發WinForm”吧!
首先,你必須要初始化這個組件(見下面程序中初始化Label一樣)。并且使用"Controls.Add"方法加入到窗體中,以下是程序運行的界面和源代碼。
C#開發WinForm源程序:
using System ; using System.Windows.Forms ; using System.Drawing ; public class Form3 : Form { //定義一個標簽 private Label label1 ; public static void Main( ) { Application.Run( new Form3( ) ) ; } // 構造 public Form3( ) { // 建立標簽并且初始化 this.label1 = new System.Windows.Forms.Label( ) ; //先繼承一個Label 類 label1.Location = new System.Drawing.Point( 24 , 16 ) ; //設定 Label的顯示位置 label1.Text = "這是一個WinForm中的標簽"; label1.Size = new System.Drawing.Size ( 200, 50 ); //設定標簽的大小 label1.TabIndex = 0 ; label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // 設定標簽的對齊方式 this.Text = "在WinForm中加入一個標簽!"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.AutoScaleBaseSize = new System.Drawing.Size( 8 , 16 ) ; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D; // 設定窗體的邊界類型 this.ForeColor = System.Drawing.SystemColors.Desktop; this.Font = new System.Drawing.Font ("宋體", 10 , System.Drawing.FontStyle.Bold ) ; // 設定字體、大小就字體的式樣 this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide; this.BackColor = System.Drawing.Color.Blue; // 設定背景色 this.ClientSize = new System.Drawing.Size( 250 , 250 ) ; //把標簽加到窗體中 this.Controls.Add ( this.label1 ) ; } }
感謝各位的閱讀,以上就是“如何用C#開發WinForm”的內容了,經過本文的學習后,相信大家對如何用C#開發WinForm這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。