GrapeCity.Win.Common 名前空間 > PlusPakPickerBase クラス : DropDownOpened イベント |
Public Event DropDownOpened As EventHandler
public event EventHandler DropDownOpened
次のサンプルコードは、ドロップダウンウィンドウが開いたときに、DropDownOpenedイベントを使用してタスクを実行する方法を示します。この例では、DropDownOpenedイベントに接続されたイベントハンドラで、SymbolButtonのSymbolButton.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