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

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

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

プロパティ解説
CloseReasonドロップダウンウィンドウが閉じた理由を示す値を取得します。  
使用例
次のサンプルコードは、ドロップダウンウィンドウが閉じたときに、DropDownClosedイベントを使用してタスクを実行する方法を示します。この例では、DropDownClosedイベントに接続されたイベントハンドラで、GrapeCity.Win.Common.SymbolButtonGrapeCity.Win.Common.SymbolButton.SymbolDirectionを変更し、ドロップダウンウィンドウが閉じた理由を表示しています。このサンプルコードは、GcComboFrameクラスの概要に示されている詳細なコード例の一部を抜粋したものです。
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
プラットフォーム

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