GrapeCity.Win.Containers 名前空間 > GcComboFrame クラス : DropDownClosing イベント |
Public Event DropDownClosing As EventHandler(Of DropDownClosingEventArgs)
public event EventHandler<DropDownClosingEventArgs> DropDownClosing
イベント ハンドラが、このイベントに関連するデータを含む、DropDownClosingEventArgs 型の引数を受け取りました。次の DropDownClosingEventArgs プロパティには、このイベントの固有の情報が記載されます。
プロパティ | 解説 |
---|---|
CloseReason | ドロップダウンウィンドウが閉じる理由を示す値を取得します。 |
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