GrapeCity.Win.Common 名前空間 : DropDownClosedEventArgs クラス |
Public Class DropDownClosedEventArgs Inherits System.EventArgs
public class DropDownClosedEventArgs : System.EventArgs
次のサンプルコードは、この型の使用方法を示します。この例では、GrapeCity.Win.Containers.GcComboFrame.DropDownClosedイベントに接続されたイベントハンドラで、ドロップダウンウィンドウが閉じた理由を示すCloseReasonを表示しています。
このサンプルコードは、GrapeCity.Win.Containers.GcComboFrameクラスの概要に示されている詳細なコード例の一部を抜粋したものです。その元の例では、最初にcomboBox1からSymbolButton項目を選択してgcComboFrame1にSymbolButtonを表示し、次にDropDownButtonをクリックしてドロップダウンウィンドウを開閉できます。
private void GcComboFrame1_DropDownClosed(object sender, DropDownClosedEventArgs e) { // Change the SymbolButton's SymbolDirection after drop-down window has closed. (this.gcComboFrame1.SideButtons["SymbolButton"] as SymbolButton).SymbolDirection = SymbolDirection.Down; // Output the reason why the drop-down window is closed. this.Text = "CloseReason = " + e.CloseReason.ToString(); }
Private Sub GcComboFrame1_DropDownClosed(ByVal sender As Object, ByVal e As DropDownClosedEventArgs) ' Change the SymbolButton's SymbolDirection after drop-down window has closed. TryCast(Me.gcComboFrame1.SideButtons("SymbolButton"), SymbolButton).SymbolDirection = SymbolDirection.Down ' Output the reason why the drop-down window is closed. Me.Text = "CloseReason = " + e.CloseReason.ToString() End Sub
System.Object
System.EventArgs
GrapeCity.Win.Common.DropDownClosedEventArgs
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