我动态生成了这些按钮(sepete ekle)。此按钮有一个点击事件。
我想做:当这个按钮点击flowlayout面板添加到groupbox控件时。
答案 0 :(得分:0)
您必须将您的按钮注册到click事件,然后在flowLayoutPanel中传输控件
private void Init()
{
button.Click += Button_Click;//you button
}
private void Button_Click(object sender, EventArgs e)
{
Button button = (Button) sender;
panel.Controls.Remove(button);// your control containing the button...
flowLayoutPanel.Controls.Add(button);// your flowLayoutPanel
}