ColumnClickEventArgs.Column 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得所按下資料行之以零起始的索引。
public:
property int Column { int get(); };
public int Column { get; }
member this.Column : int
Public ReadOnly Property Column As Integer
屬性值
在按一下資料行之 ListView.ColumnHeaderCollection 內以零起始的索引。
範例
下列程式碼範例示範如何使用這個成員。 在此範例中,事件處理常式會報告事件的發生次數 ListView.ColumnClick 。 此報告可協助您瞭解事件發生的時間,並可協助您進行偵錯。 若要報告多個事件或經常發生的事件,請考慮將 取代 MessageBox.Show 為 Console.WriteLine 或將訊息附加至多行 TextBox 。
若要執行範例程式碼,請將它貼入包含名為 ListView1
之類型 ListView 實例的專案。 然後,確定事件處理常式與 事件相關聯 ListView.ColumnClick 。
private void ListView1_ColumnClick(Object sender, ColumnClickEventArgs e) {
System.Text.StringBuilder messageBoxCS = new System.Text.StringBuilder();
messageBoxCS.AppendFormat("{0} = {1}", "Column", e.Column );
messageBoxCS.AppendLine();
MessageBox.Show(messageBoxCS.ToString(), "ColumnClick Event" );
}
Private Sub ListView1_ColumnClick(sender as Object, e as ColumnClickEventArgs) _
Handles ListView1.ColumnClick
Dim messageBoxVB as New System.Text.StringBuilder()
messageBoxVB.AppendFormat("{0} = {1}", "Column", e.Column)
messageBoxVB.AppendLine()
MessageBox.Show(messageBoxVB.ToString(),"ColumnClick Event")
End Sub
備註
您可以在 事件的事件處理常式 ColumnClick 中使用這個屬性提供的資訊,判斷要按一下哪一個資料行,以對資料行內的資料執行工作。