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

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

プロパティ値

CellButtonVisibility値の1つ。既定値はCellButtonVisibility.ShowAlwaysです。
例外
例外解説
System.ComponentModel.InvalidEnumArgumentException指定された値がCellButtonVisibility値の1つではありません。
解説

セルが現在のセルのときにDateTimePickerCellにドロップダウンボタンを表示する場合は、このプロパティの値をCellButtonVisibility.ShowForCurrentCellに設定します。

ShowDropDownButtonプロパティは、セルが読み取り専用かどうかにかかわらず、編集モードでないときのセルの外観に影響します。セルが編集モードのときは、常にSystem.Windows.Forms.DateTimePickerコントロールのようになります。

注意:
ShowUpDownプロパティがtrueに設定されている場合、ShowDropDownButtonプロパティはスピンボタンにも影響します。

使用例
次のサンプルコードは、日時ピッカー型セルの動作または外観をカスタマイズする方法を示します。このサンプルコードは、DateTimePickerCellクラスに示されている詳細なコード例の一部を抜粋したものです。
DateTimePickerCell CreateDateTimePickerCellHiddenDropDownButton()
{
    DateTimePickerCell dateTimePickerCell1 = new DateTimePickerCell();

    dateTimePickerCell1.Value = DateTime.Now;

    dateTimePickerCell1.Size = new Size(120, 21);

    // Hide drop down button when non edit status.
    dateTimePickerCell1.ShowDropDownButton = CellButtonVisibility.NotShown;

    return dateTimePickerCell1;
}
Private Function CreateDateTimePickerCellHiddenDropDownButton() As DateTimePickerCell
    Dim dateTimePickerCell1 As New DateTimePickerCell()

    dateTimePickerCell1.Value = DateTime.Now

    dateTimePickerCell1.Size = New Size(120, 21)

    ' Hide drop down button when non edit status.
    dateTimePickerCell1.ShowDropDownButton = CellButtonVisibility.NotShown

    Return dateTimePickerCell1
End Function
参照

DateTimePickerCell クラス
DateTimePickerCell メンバ

 

 


© 2008-2015 GrapeCity inc. All rights reserved.