C# 通過記事本建立一個Winfrom視窗

來源:互聯網
上載者:User

標籤:

 1 using System; 2 using System.Windows.Forms; 3  4 // 版本號碼: 1.0 5 [assembly:System.Reflection.AssemblyVersion("1.1")] 6  7 //命名空間 8 namespace UKE.Winform.Demo 9 {10     // 視窗類別 : 預設繼承 System.Windows.Forms.Form 類11     public class MyForm : System.Windows.Forms.Form12     {13         // 聲明控制項執行個體14         private Button btnLoad;            // 按鈕btLoad15         private PictureBox pbPhoto;        // 圖片控制項16         17         18         // 初始化控制項(建構函式中),this代表視窗19         public MyForm()20         {21             // 視窗標題22             this.Text = "Hello World 1.1";23             24             // 按鈕btLoad;25             btnLoad = new Button();26             btnLoad.Text = "載入圖片";                                // 按鈕名稱27             btnLoad.Left = 10;                                        // 按鈕 x 座標28             btnLoad.Top = 10;                                        // 按鈕 y 座標29             30             // 圖片控制項31             pbPhoto = new PictureBox();32             pbPhoto.BorderStyle = BorderStyle.Fixed3D;33             pbPhoto.Width = this.Width / 2;                            // 圖片控制項寬度34             pbPhoto.Height = this.Height / 2;                        // 圖片控制項高度35             pbPhoto.Left = (this.Width - pbPhoto.Width) / 2;        // 圖片控制項 x 座標36             pbPhoto.Top = (this.Height - pbPhoto.Height) / 2;        // 圖片控制項 y 座標37             38             // 視窗集合中通過Add()方法將控制項添加進來39             this.Controls.Add(btnLoad);    //按鈕btnLoad添加進來 40             this.Controls.Add(pbPhoto);    // 添加圖片控制項41             42         }43         44         45         // 程式入口46         [System.STAThread]                // 多線程模式47         public static void Main()48         {49             //啟用系統介面風格效果50             System.Windows.Forms.Application.EnableVisualStyles();51             System.Windows.Forms.Application.Run(new MyForm());52         }53         54         55     }56 }

 

C# 通過記事本建立一個Winfrom視窗

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.