2016-06-09 85 views

回答

0

你有你的按鈕點擊事件,然後,transfert控制在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 
    } 
+0

它不可能工作。 – sshneo

相關問題