C#分割窗体、分栏窗口
当前位置:点晴教程→知识管理交流
→『 技术文档交流 』
C#分割窗体、分栏窗口,采用:System.Windows.Forms.Splitter();,很像WEB设计中的iFrame框架,把窗口分成多个部分,横向或纵向的窗口,可用鼠标拖动窗口改变各个部分的大小,这种类似的窗口效果使用广泛,希望掌握这个小技巧哦。
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 编辑过 |
关键字查询
相关文章
正在查询... |