C#分割窗體、分欄窗口
當(dāng)前位置:點(diǎn)晴教程→知識(shí)管理交流
→『 技術(shù)文檔交流 』
C#分割窗體、分欄窗口,采用:System.Windows.Forms.Splitter();,很像WEB設(shè)計(jì)中的iFrame框架,把窗口分成多個(gè)部分,橫向或縱向的窗口,可用鼠標(biāo)拖動(dòng)窗口改變各個(gè)部分的大小,這種類似的窗口效果使用廣泛,希望掌握這個(gè)小技巧哦。
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ò) |
關(guān)鍵字查詢
相關(guān)文章
正在查詢... |