FlowLayoutPanel 能控制动态生成控件之间的间距吗
FlowLayoutPanel 能控制动态生成控件之间的间距吗
------解决方案--------------------本帖最后由 caozhy 于 2012-12-31 10:38:46 编辑
foreach (Control c in FlowLayoutPanel1.Controls)
c.Margin = new Padding(xxx);
------解决方案--------------------Margin属性,再加上Padding属性也比较好的处理了~~