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

ピッカーコントロールに表示されるドロップダウンボタンを表します。
構文
Public Class DropDownButton 
   Inherits SideButtonBase
public class DropDownButton : SideButtonBase 
解説
DropDownButtonはピッカーコントロールのサイドボタンの1つです。DropDownButton.IsDefaultBehaviorプロパティがtrueの場合、このボタンを使用して、関連付けられたピッカーコントロールのドロップダウンウィンドウを開閉できます。
使用例
次のサンプルコードは、DropDownButtonを作成し、ボタンの一般的なプロパティを設定します。このサンプルコードは、GrapeCity.Win.Containers.GcComboFrameクラスの概要に示されている詳細なコード例の一部を抜粋したものです。
// Returns a DropDownButton instance for gcComboFrame1.
private SideButtonBase CreateDropDownButton()
{
    DropDownButton dropDownButton = new DropDownButton();

    // Specify a unique name for this button.
    dropDownButton.Name = "DropDownButton";

    // Set the width of this button.
    dropDownButton.ButtonWidth = 20;

    // Show this button always.
    dropDownButton.Visible = ButtonVisibility.ShowAlways;

    return dropDownButton;
}
' Returns a DropDownButton instance for gcComboFrame1.
Private Function CreateDropDownButton() As SideButtonBase
    Dim dropDownButton As New DropDownButton()

    ' Specify a unique name for this button.
    dropDownButton.Name = "DropDownButton"

    ' Set the width of this button.
    dropDownButton.ButtonWidth = 20

    ' Show this button always.
    dropDownButton.Visible = ButtonVisibility.ShowAlways

    Return dropDownButton
End Function
継承階層

System.Object
   System.MarshalByRefObject
      System.ComponentModel.Component
         GrapeCity.Win.Common.SideButtonBase
            GrapeCity.Win.Common.DropDownButton

プラットフォーム

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

参照

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

Send Feedback