PowerTools MultiRow for Windows Forms 8.0J
ShowSpinButton プロパティ (DomainUpDownCell)
使用例 

セルが編集モードでないときにドロップダウンボタンをどのように表示するかを示す値を取得または設定します。
構文
Public Property ShowSpinButton As CellButtonVisibility
public CellButtonVisibility ShowSpinButton {get; set;}

プロパティ値

セルが編集モードでないときにドロップダウンボタンをどのように表示するかを示すCellButtonVisibility値の1つ。既定値はCellButtonVisibility.ShowAlwaysです。
例外
例外解説
System.ComponentModel.InvalidEnumArgumentException指定された値がCellButtonVisibility値の1つではありません。
使用例
次のサンプルコードは、このプロパティによって上下ボタンがいつ表示されるかを設定する方法を示します。このサンプルコードは、DomainUpDownCellに示されている詳細なコード例の一部を抜粋したものです。
void setShowSpinButtonButton_Click(object sender, EventArgs e)
{
    DomainUpDownCell domainUpDownCell1 = this.gcMultiRow1[0, 0] as DomainUpDownCell;
    if (domainUpDownCell1.ShowSpinButton == CellButtonVisibility.ShowAlways||domainUpDownCell1.ShowSpinButton== CellButtonVisibility.ShowForCurrentCell)
    {
        domainUpDownCell1.ShowSpinButton = CellButtonVisibility.NotShown;
    }
    else
    {
        domainUpDownCell1.ShowSpinButton = CellButtonVisibility.ShowAlways;
    }
    label.Text = "Click the button repeatedly, the ShowSpinButton property will take effect.";
}
Private Sub setShowSpinButtonButton_Click(ByVal sender As Object, ByVal e As EventArgs) Handles setShowSpinButtonButton.Click
    Dim domainUpDownCell1 As DomainUpDownCell = TryCast(Me.gcMultiRow1(0, 0), DomainUpDownCell)
    If domainUpDownCell1.ShowSpinButton = CellButtonVisibility.ShowAlways OrElse domainUpDownCell1.ShowSpinButton = CellButtonVisibility.ShowForCurrentCell Then
        domainUpDownCell1.ShowSpinButton = CellButtonVisibility.NotShown
    Else
        domainUpDownCell1.ShowSpinButton = CellButtonVisibility.ShowAlways
    End If
    label.Text = "Click the button repeatedly, the ShowSpinButton property will take effect."
End Sub
参照

DomainUpDownCell クラス
DomainUpDownCell メンバ

 

 


© 2008-2015 GrapeCity inc. All rights reserved.