ListView.ItemDrag 事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
發生於使用者開始拖曳項目時。
public:
event System::Windows::Forms::ItemDragEventHandler ^ ItemDrag;
public event System.Windows.Forms.ItemDragEventHandler ItemDrag;
public event System.Windows.Forms.ItemDragEventHandler? ItemDrag;
member this.ItemDrag : System.Windows.Forms.ItemDragEventHandler
Public Custom Event ItemDrag As ItemDragEventHandler
事件類型
範例
下列程式碼範例示範如何使用這個成員。 在此範例中,事件處理常式會報告事件的發生次數 ItemDrag 。 此報告可協助您瞭解事件發生的時間,並可協助您進行偵錯。 若要報告多個事件或經常發生的事件,請考慮將 取代 MessageBox.Show 為 Console.WriteLine 或將訊息附加至多行 TextBox 。
若要執行範例程式碼,請將它貼入包含名為 ListView1
之類型 ListView 實例的專案。 然後,確定事件處理常式與 事件相關聯 ItemDrag 。
private void ListView1_ItemDrag(Object sender, ItemDragEventArgs e) {
System.Text.StringBuilder messageBoxCS = new System.Text.StringBuilder();
messageBoxCS.AppendFormat("{0} = {1}", "Button", e.Button );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "Item", e.Item );
messageBoxCS.AppendLine();
MessageBox.Show(messageBoxCS.ToString(), "ItemDrag Event" );
}
Private Sub ListView1_ItemDrag(sender as Object, e as ItemDragEventArgs) _
Handles ListView1.ItemDrag
Dim messageBoxVB as New System.Text.StringBuilder()
messageBoxVB.AppendFormat("{0} = {1}", "Button", e.Button)
messageBoxVB.AppendLine()
messageBoxVB.AppendFormat("{0} = {1}", "Item", e.Item)
messageBoxVB.AppendLine()
MessageBox.Show(messageBoxVB.ToString(),"ItemDrag Event")
End Sub
備註
當使用者 ItemDrag 開始拖曳專案時,就會發生此事件。 事件事件處理常式 ItemDrag 通常會藉由呼叫 Control.DoDragDrop 方法來執行拖曳的工作。 您可以使用此事件來執行將專案拖曳至應用程式控制項或移出控制項 ListView 所需的工作。
如需處理事件的詳細資訊,請參閱 處理和引發事件。