GrapeCity.Win.Common 名前空間 : DropDownClosingEventArgs クラス |
Public Class DropDownClosingEventArgs Inherits System.EventArgs
public class DropDownClosingEventArgs : System.EventArgs
次のサンプルコードは、この型の使用方法を示します。この例では、GrapeCity.Win.Containers.GcComboFrame.DropDownClosingイベントに接続されたイベントハンドラで、ドロップダウンウィンドウが閉じた理由を示すCloseReasonを表示しています。
このサンプルコードは、GrapeCity.Win.Containers.GcComboFrameクラスの概要に示されている詳細なコード例の一部を抜粋したものです。その元の例では、最初にcomboBox1からSymbolButton項目を選択してgcComboFrame1にSymbolButtonを表示し、次にDropDownButtonをクリックしてドロップダウンウィンドウを開閉できます。
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
System.Object
System.EventArgs
GrapeCity.Win.Common.DropDownClosingEventArgs
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