PowerTools InputMan for Windows Forms 8.0J
DropDown プロパティ (GcNumber)
使用例 

ドロップダウンボタンの動作を設定するDropDown オブジェクトを取得または設定します。
構文
Public ReadOnly Property DropDown As DropDown
public DropDown DropDown {get;}

プロパティ値

DropDown オブジェクト。
解説
ドロップダウン動作とウィンドウの外観は、このDropDown プロパティを設定することでカスタマイズできます。これには、表示を有効にするかどうか、サイズ変更できるかどうか、ドロップダウンウィンドウの表示方向、ドロップダウンウィンドウの影、開閉時のアニメーションなどが含まれます。
使用例
ドロップダウン電卓の外観を設定した GcNumber コントロールを作成するコード例を次に示します。
//  Please use the following namespace
//  using System.Windows.Forms;
//  using GrapeCity.Win.Editors;

public void SetDropDownSettings()
{
    // Creates an instance of a GcNumber control.
    GcNumber gcNumber1 = new GcNumber();
    // Sets the AllowResize to true, you can change the size of drop-dwon window by drag the mouse.
    gcNumber1.DropDown.AllowResize = true;
    // Sets the ClosingAnimation to Fade, the drop-down window will displayed as a fade effect when it's closing.
    gcNumber1.DropDown.ClosingAnimation = DropDownAnimation.Fade;
    // Sets the OpeningAnimation to Fade, the drop-down window will displayed as a fade effect when it's opening.
    gcNumber1.DropDown.OpeningAnimation = DropDownAnimation.Fade;
    // Sets the Dirction to AboveLeft, the drop-down window will displayed above the control and align to left.
    gcNumber1.DropDown.Direction = DropDownDirection.AboveLeft;
    // Sets the ShowShadow to true, the drop-down window will displayed with a shadow.
    gcNumber1.DropDown.ShowShadow = true;
}
'  Please use the following namespace
'  Imports System.Windows.Forms;
'  Imports GrapeCity.Win.Editors;

Public Sub SetDropDownSettings()
    ' Creates an instance of a GcNumber control.
    Dim gcNumber1 As New GcNumber()
    ' Sets the AllowResize to true, you can change the size of drop-dwon window by drag the mouse.
    gcNumber1.DropDown.AllowResize = True
    ' Sets the ClosingAnimation to Fade, the drop-down window will displayed as a fade effect when it's closing.
    gcNumber1.DropDown.ClosingAnimation = DropDownAnimation.Fade
    ' Sets the OpeningAnimation to Fade, the drop-down window will displayed as a fade effect when it's opening.
    gcNumber1.DropDown.OpeningAnimation = DropDownAnimation.Fade
    ' Sets the Dirction to AboveLeft, the drop-down window will displayed above the control and align to left.
    gcNumber1.DropDown.Direction = DropDownDirection.AboveLeft
    ' Sets the ShowShadow to true, the drop-down window will displayed with a shadow.
    gcNumber1.DropDown.ShowShadow = True
End Sub
参照

GcNumber クラス
GcNumber メンバ

 

 


© 2004-2015 GrapeCity inc. All rights reserved.