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

ドロップダウンウィンドウが開く前に発生します。
構文
Public Event DropDownOpening As EventHandler(Of CancelEventArgs)
public event EventHandler<CancelEventArgs> DropDownOpening
イベント データ

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

プロパティ解説
Cancel  
使用例
次のサンプルコードは、ドロップダウンウィンドウが開くときに、DropDownOpeningイベントを使用してタスクを実行する方法を示します。この例では、DropDownOpeningイベントに接続されたイベントハンドラで、ドロップダウンウィンドウが開く前にドロップダウンウィンドウのサイズを特定の値に設定しています。このサンプルコードは、GcComboFrameクラスの概要に示されている詳細なコード例の一部を抜粋したものです。
private void GcComboFrame1_DropDownOpening(object sender, CancelEventArgs e)
{
    // Set the drop-down window's size to a specific size before the drop-down window opens.
    this.gcComboFrame1.DropDownSettings.Size = new Size(this.gcComboFrame1.Width, 100);
}
Private Sub GcComboFrame1_DropDownOpening(ByVal sender As Object, ByVal e As CancelEventArgs)
    ' Set the drop-down window's size to a specific size before the drop-down window opens.
    Me.gcComboFrame1.DropDownSettings.Size = New Size(Me.gcComboFrame1.Width, 100)
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