1
我試圖在每個單元格中使用面板,但picturebox仍然不會移動到另一個單元格。 感謝winforms - 如何移動tableLayoutPanel中的picturebox?
我試圖在每個單元格中使用面板,但picturebox仍然不會移動到另一個單元格。 感謝winforms - 如何移動tableLayoutPanel中的picturebox?
使用以下命令:
tableLayoutPanel.Controls.Remove(button1);
// then:
tableLayoutPanel.Controls.Add(pictureBox, columnIndex, rowIndex);
TableLayoutPanel tutorial on csharp-online.net
如果你想實現拖放,你可能會從使用以下參考文獻:
個
感謝,但我想拖動和表內下降。可能嗎? – gooteis 2011-05-14 13:27:25
@gooteis:當然,但您需要先閱讀有關拖放的內容。我編輯了我的答案,提供了一些參考 – 2011-05-14 13:39:42