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

ピッカーコントロールのドロップダウンウィンドウが開く前に発生します。
構文
Public Event DropDownOpened As EventHandler
public event EventHandler DropDownOpened
使用例

次のサンプルコードは、ドロップダウンウィンドウが開いたときに、DropDownOpenedイベントを使用してタスクを実行する方法を示します。この例では、DropDownOpenedイベントに接続されたイベントハンドラで、SymbolButtonSymbolButton.SymbolDirectionを変更しています。

このサンプルコードは、GrapeCity.Win.Containers.GcComboFrameクラスの概要に示されている詳細なコード例の一部を抜粋したものです。その元の例では、最初にcomboBox1からSymbolButton項目を選択してgcComboFrame1にSymbolButtonを表示し、次にDropDownButtonをクリックしてドロップダウンウィンドウを開閉できます。

private void GcComboFrame1_DropDownOpened(object sender, EventArgs e)
{
    // Change the SymbolButton's SymbolDirection after drop-down window has opened.
    (this.gcComboFrame1.SideButtons["SymbolButton"] as SymbolButton).SymbolDirection = SymbolDirection.Up;
}
Private Sub GcComboFrame1_DropDownOpened(ByVal sender As Object, ByVal e As EventArgs)
    ' Change the SymbolButton's SymbolDirection after drop-down window has opened.
    TryCast(Me.gcComboFrame1.SideButtons("SymbolButton"), SymbolButton).SymbolDirection = SymbolDirection.Up
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

参照

PlusPakPickerBase クラス
PlusPakPickerBase メンバ
OnDropDownOpened メソッド
OnDropDownOpened メソッド

Send Feedback