flowLayoutPanel和UserControl实现动态添加控件组
时间:2010-08-29 来源:Tecson
1 private void AddFilterButton_Click(object sender, EventArgs e)2 {
3 //添加条件
4 Control sf = new SearchFilter();
5 this.flowLayoutPanel1.Controls.Add(sf);
6 flowLayoutPanel1.VerticalScroll.Enabled = true;//滚动条设置
7 flowLayoutPanel1.AutoScroll = true;//滚动条设置
8 }
以上是写在Form里面的,主要的想法是这样:
在Form里面加个flowLayoutPanel和一个按钮。点击按钮,就向flowLayoutPanel中添加一个UserControl。
之后就是建立一个UserControl,至于里面写什么就无所谓了。呵呵,看需要。
上面代码的另外两行是使flowLayoutPanel里面的控件在不可视区域里是,有个滚动条可以出来“帮忙”。
下面写在UserControl里面,用于将这个UserControl从FlowLayoutPanel里面移除的。
private void CloseButton_Click(object sender, EventArgs e) { this.Parent.Controls.Remove(this); }
至于如何在UserControl和Form之间通信,还在研究中。
相关阅读 更多 +