1
所以我有一個流程面板和一個按鈕,它在運行時爲它添加了一覽表。我設置了雙擊事件 - 是否可以設置某種點擊(或單擊並拖動)事件來重新排列流程面板中的控件?是否可以在運行時重新排列流控面板中的控件?
我知道我們可以改變排序策略(自上而下,左右)幷包裝,但我希望組織用戶可以簡單地從一個地方拖動控件並將其重新定位到其他地方。
private void addNewWOButton_Click(object sender, EventArgs e)
{
ListView newListView = new ListView();
newListView.AllowDrop = true;
newListView.DragDrop += listView_DragDrop;
newListView.DragEnter += listView_DragEnter;
newListView.DoubleClick += listView_DoubleClick;
flowPanel.Controls.Add(newListView);
}
你在調用一個「flowpanel」實際上是一個FlowLayoutPanel控件嗎? – 2012-01-27 02:53:53
[流佈局面板中的控件重新排序]的可能重複(http://stackoverflow.com/questions/425867/reordering-of-controls-within-a-flow-layout-panel)?另見:http://www.codeproject.com/Articles/48411/Using-the-FlowLayoutPanel-and-Reordering-with-Drag – 2012-01-27 02:55:48