ListControlConvertEventArgs.ListItem プロパティ

定義

データ ソース項目を取得します。

public:
 property System::Object ^ ListItem { System::Object ^ get(); };
public object ListItem { get; }
public object? ListItem { get; }
member this.ListItem : obj
Public ReadOnly Property ListItem As Object

プロパティ値

データ ソース内の項目を表す Object

次のコード例では、このメンバーの使用方法を示します。 この例では、イベント ハンドラーがイベントの ListControl.Format 発生を報告します。 このレポートは、イベントが発生したタイミングを知るのに役立ち、デバッグに役立ちます。 複数のイベントまたは頻繁に発生するイベントを報告するには、 を Console.WriteLine に置き換えるかMessageBox.Show、複数行TextBoxにメッセージを追加することを検討してください。

コード例を実行するには、 や ListBoxなどComboBox、 からListControl継承する型のインスタンスを含むプロジェクトに貼り付けます。 次に、インスタンス ListControl1 に名前を付け、イベント ハンドラーがイベントに ListControl.Format 関連付けられていることを確認します。

private void ListControl1_Format(Object sender, ListControlConvertEventArgs e) {

System.Text.StringBuilder messageBoxCS = new System.Text.StringBuilder();
messageBoxCS.AppendFormat("{0} = {1}", "ListItem", e.ListItem );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "Value", e.Value );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "DesiredType", e.DesiredType );
messageBoxCS.AppendLine();
MessageBox.Show(messageBoxCS.ToString(), "Format Event" );
}
Private Sub ListControl1_Format(sender as Object, e as ListControlConvertEventArgs) _ 
     Handles ListControl1.Format

    Dim messageBoxVB as New System.Text.StringBuilder()
    messageBoxVB.AppendFormat("{0} = {1}", "ListItem", e.ListItem)
    messageBoxVB.AppendLine()
    messageBoxVB.AppendFormat("{0} = {1}", "Value", e.Value)
    messageBoxVB.AppendLine()
    messageBoxVB.AppendFormat("{0} = {1}", "DesiredType", e.DesiredType)
    messageBoxVB.AppendLine()
    MessageBox.Show(messageBoxVB.ToString(),"Format Event")

End Sub

適用対象