PowerTools PlusPak for Windows Forms 8.0J
DropDownClosingEventArgs クラス
メンバ  使用例 

GrapeCity.Win.Containers.GcComboFrame.DropDownClosing イベントのデータを提供します。
構文
Public Class DropDownClosingEventArgs 
   Inherits System.EventArgs
public class DropDownClosingEventArgs : System.EventArgs 
解説
このクラスは、GrapeCity.Win.Containers.GcComboFrame.DropDownClosingイベントが発生したときに使用されます。GrapeCity.Win.Containers.GcComboFrame.DropDownClosingイベントは、ユーザーインタフェース(UI)の操作またはプログラムでPlusPakPickerBase.DroppedDownをfalseに設定したことによってピッカーコントロールのドロップダウンウィンドウが閉じる直前に発生します。ドロップダウンウィンドウが閉じる理由は、CloseReasonプロパティから取得できます。
使用例

次のサンプルコードは、この型の使用方法を示します。この例では、GrapeCity.Win.Containers.GcComboFrame.DropDownClosingイベントに接続されたイベントハンドラで、ドロップダウンウィンドウが閉じた理由を示すCloseReasonを表示しています。

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

private void GcComboFrame1_DropDownClosing(object sender, DropDownClosingEventArgs e)
{
    // Set textBox1's Text property to the selected item of listBox1.
    if (this.listBox1.SelectedIndex != -1)
    {
        this.textBox1.Text = this.listBox1.SelectedItem.ToString();
    }

    // Output the reason why the drop-down window is closing.
    this.Text = "CloseReason = " + e.CloseReason.ToString();
}
Private Sub GcComboFrame1_DropDownClosing(ByVal sender As Object, ByVal e As DropDownClosingEventArgs)
    ' Set textBox1's Text property to the selected item of listBox1.
    If Me.listBox1.SelectedIndex <> -1 Then
        Me.textBox1.Text = Me.listBox1.SelectedItem.ToString()
    End If

    ' Output the reason why the drop-down window is closing.
    Me.Text = "CloseReason = " + e.CloseReason.ToString()
End Sub
継承階層

System.Object
   System.EventArgs
      GrapeCity.Win.Common.DropDownClosingEventArgs

プラットフォーム

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

参照

DropDownClosingEventArgs メンバ
GrapeCity.Win.Common 名前空間

Send Feedback