PowerTools PlusPak for Windows Forms 8.0J
DropDownSizeChanged イベント
使用例 

ドロップダウンウィンドウのサイズが変更されたときに発生します。
構文
Public Event DropDownSizeChanged As EventHandler
public event EventHandler DropDownSizeChanged
使用例
次のサンプルコードは、ドロップダウンウィンドウのサイズが変更されたときに、DropDownSizeChangedイベントを使用してタスクを実行する方法を示します。この例では、DropDownSizeChangedイベントに接続されたイベントハンドラで、サイズ変更後の新しいサイズを表示しています。このサンプルコードは、GcComboFrameクラスの概要に示されている詳細なコード例の一部を抜粋したものです。
private void GcComboFrame1_DropDownSizeChanged(object sender, EventArgs e)
{
    // Output the size of drop-down window to the Text of gcComboFrame1's parent form.
    this.Text = "Drop-down window's size: " + this.gcComboFrame1.DropDownSettings.Size;
}
Private Sub GcComboFrame1_DropDownSizeChanged(ByVal sender As Object, ByVal e As EventArgs)
    ' Output the size of drop-down window to the Text of gcComboFrame1's parent form.
    Me.Text = "Drop-down window's size: " + Me.gcComboFrame1.DropDownSettings.Size.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