C#分割窗體、分欄窗口
當(dāng)前位置:點晴教程→知識管理交流
→『 技術(shù)文檔交流 』
C#分割窗體、分欄窗口,采用:System.Windows.Forms.Splitter();,很像WEB設(shè)計中的iFrame框架,把窗口分成多個部分,橫向或縱向的窗口,可用鼠標(biāo)拖動窗口改變各個部分的大小,這種類似的窗口效果使用廣泛,希望掌握這個小技巧哦。
System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Form1)); this.pictureBox1 = new System.Windows.Forms.PictureBox(); this.splitter1 = new System.Windows.Forms.Splitter(); this.richTextBox1 = new System.Windows.Forms.RichTextBox(); this.splitter2 = new System.Windows.Forms.Splitter(); this.listView1 = new System.Windows.Forms.ListView(); this.columnHeader1 = new System.Windows.Forms.ColumnHeader(); this.columnHeader2 = new System.Windows.Forms.ColumnHeader(); this.columnHeader3 = new System.Windows.Forms.ColumnHeader(); this.SuspendLayout(); 該文章在 2021/2/4 17:10:20 編輯過 |
關(guān)鍵字查詢
相關(guān)文章
正在查詢... |