這篇文章主要講解了“如何用C#開發(fā)WinForm”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來(lái)研究和學(xué)習(xí)“如何用C#開發(fā)WinForm”吧!
創(chuàng)新互聯(lián)主要從事網(wǎng)站設(shè)計(jì)制作、成都網(wǎng)站設(shè)計(jì)、網(wǎng)頁(yè)設(shè)計(jì)、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)郴州,十多年網(wǎng)站建設(shè)經(jīng)驗(yàn),價(jià)格優(yōu)惠、服務(wù)專業(yè),歡迎來(lái)電咨詢建站服務(wù):028-86922220
首先,你必須要初始化這個(gè)組件(見(jiàn)下面程序中初始化Label一樣)。并且使用"Controls.Add"方法加入到窗體中,以下是程序運(yùn)行的界面和源代碼。
C#開發(fā)WinForm源程序:
using System ; using System.Windows.Forms ; using System.Drawing ; public class Form3 : Form { //定義一個(gè)標(biāo)簽 private Label label1 ; public static void Main( ) { Application.Run( new Form3( ) ) ; } // 構(gòu)造 public Form3( ) { // 建立標(biāo)簽并且初始化 this.label1 = new System.Windows.Forms.Label( ) ; //先繼承一個(gè)Label 類 label1.Location = new System.Drawing.Point( 24 , 16 ) ; //設(shè)定 Label的顯示位置 label1.Text = "這是一個(gè)WinForm中的標(biāo)簽"; label1.Size = new System.Drawing.Size ( 200, 50 ); //設(shè)定標(biāo)簽的大小 label1.TabIndex = 0 ; label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // 設(shè)定標(biāo)簽的對(duì)齊方式 this.Text = "在WinForm中加入一個(gè)標(biāo)簽!"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.AutoScaleBaseSize = new System.Drawing.Size( 8 , 16 ) ; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D; // 設(shè)定窗體的邊界類型 this.ForeColor = System.Drawing.SystemColors.Desktop; this.Font = new System.Drawing.Font ("宋體", 10 , System.Drawing.FontStyle.Bold ) ; // 設(shè)定字體、大小就字體的式樣 this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide; this.BackColor = System.Drawing.Color.Blue; // 設(shè)定背景色 this.ClientSize = new System.Drawing.Size( 250 , 250 ) ; //把標(biāo)簽加到窗體中 this.Controls.Add ( this.label1 ) ; } }
感謝各位的閱讀,以上就是“如何用C#開發(fā)WinForm”的內(nèi)容了,經(jīng)過(guò)本文的學(xué)習(xí)后,相信大家對(duì)如何用C#開發(fā)WinForm這一問(wèn)題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!