PowerTools PlusPak for Windows Forms 8.0J
DropDownClosing イベント (GcComboFrame)
使用例 

ドロップダウンウィンドウが閉じる前に発生します。
構文
イベント データ

イベント ハンドラが、このイベントに関連するデータを含む、DropDownClosingEventArgs 型の引数を受け取りました。次の DropDownClosingEventArgs プロパティには、このイベントの固有の情報が記載されます。

プロパティ解説
CloseReasonドロップダウンウィンドウが閉じる理由を示す値を取得します。  
使用例
次のサンプルコードは、ドロップダウンウィンドウが閉じるときに、DropDownClosingイベントを使用してタスクを実行する方法を示します。この例では、DropDownClosingイベントに接続されたイベントハンドラで、textBox1のSystem.Windows.Forms.TextBox.TextプロパティをlistBox1の選択された項目のテキストに設定し、ドロップダウンウィンドウが閉じた理由を表示しています。このサンプルコードは、GcComboFrameクラスの概要に示されている詳細なコード例の一部を抜粋したものです。
private void GcComboFrame1_DropDownClosing(object sender, DropDownClosingEventArgs e)
{
    // Set textBox1's Text property to the selected item of listBox1.
    if (this.listBox1.SelectedIndex != -1)
    {
        this.textBox1.Text = this.listBox1.SelectedItem.ToString();
    }

    // Output the reason why the drop-down window is closing.
    this.Text = "CloseReason = " + e.CloseReason.ToString();
}
Private Sub GcComboFrame1_DropDownClosing(ByVal sender As Object, ByVal e As DropDownClosingEventArgs)
    ' Set textBox1's Text property to the selected item of listBox1.
    If Me.listBox1.SelectedIndex <> -1 Then
        Me.textBox1.Text = Me.listBox1.SelectedItem.ToString()
    End If

    ' Output the reason why the drop-down window is closing.
    Me.Text = "CloseReason = " + e.CloseReason.ToString()
End Sub
プラットフォーム

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

参照

GcComboFrame クラス
GcComboFrame メンバ

Send Feedback