C#中 FlowLayoutPanel和panel的区别
我在窗体上面分别放了一个FlowLayoutPanel控件和一个panel控件,都往里面放了点东西,感觉效果都是一样的。它俩都是容器控件,都哪些区别啊?...
我在窗体上面分别放了一个FlowLayoutPanel控件和一个panel控件,都往里面放了点东西,感觉效果都是一样的。它俩都是容器控件,都哪些区别啊?
展开
2个回答
展开全部
tableLayoutPanel: 表格布局面板,适合以表格形式规则的动态添加(显示)控件。使用方法概述:1.将tableLayoutPanel 拖放到窗体指定区域 ——一般做些基本的设置 或添加行或列,其它的就需写代码来控制显示 2.代码:
a.
// 删除默认的行和列样式
tableLayoutPanel4.ColumnStyles.Clear();
tableLayoutPanel4.RowStyles.Clear();
——删除默认的行和列样式,避免影响表格整体显示的效果,使样式以默认或自定义的为准(注:tableLayoutPanel 拖放到窗体,默认为两行两列, 默认添加的代码如下:
this.tableLayoutPanel5.ColumnCount = 2;
this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel5.Location = new System.Drawing.Point(72, 82);
this.tableLayoutPanel5.Name = "tableLayoutPanel5";
this.tableLayoutPanel5.RowCount = 2;
this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
a.
// 删除默认的行和列样式
tableLayoutPanel4.ColumnStyles.Clear();
tableLayoutPanel4.RowStyles.Clear();
——删除默认的行和列样式,避免影响表格整体显示的效果,使样式以默认或自定义的为准(注:tableLayoutPanel 拖放到窗体,默认为两行两列, 默认添加的代码如下:
this.tableLayoutPanel5.ColumnCount = 2;
this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel5.Location = new System.Drawing.Point(72, 82);
this.tableLayoutPanel5.Name = "tableLayoutPanel5";
this.tableLayoutPanel5.RowCount = 2;
this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询