PowerTools CalendarGrid for Windows Forms 1.0J
ShowDropDownButton プロパティ
使用例 

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

プロパティ値

セルが編集モードでないときにドロップダウンボタンをどのように表示するかを示す CalendarCellButtonVisibility 値の 1 つ。既定値は CalendarCellButtonVisibility.ShowAlways です。
例外
例外解説
System.ComponentModel.InvalidEnumArgumentException指定された値が CalendarCellButtonVisibility 値の 1 つではありません。
解説
ShowDropDownButton プロパティは、セルが読み取り専用かどうかにかかわらず、編集モードでないときのセルの外観に影響します。セルが編集モードのときは、常に System.Windows.Forms.ComboBox コントロールのようになります。
使用例
次のサンプルコードは、ComboBox 型セルの動作または外観をカスタマイズする方法を示します。このサンプルコードは、CalendarComboBoxCellType クラスに示されている詳細なコード例の一部を抜粋したものです。
CalendarComboBoxCellType CreateComboBoxCellHiddenDropDownButton()
{
    CalendarComboBoxCellType comboBoxCell = new CalendarComboBoxCellType();

    comboBoxCell.DropDownStyle = CalendarGridComboBoxStyle.DropDown;

    // Hide drop down button when non edit status.
    comboBoxCell.ShowDropDownButton = CalendarCellButtonVisibility.NotShown;

    comboBoxCell.Items.Add("Item1");
    comboBoxCell.Items.Add("Item2");

    return comboBoxCell;
}
Private Function CreateComboBoxCellHiddenDropDownButton() As CalendarComboBoxCellType
    Dim comboBoxCell As New CalendarComboBoxCellType()

    comboBoxCell.DropDownStyle = CalendarGridComboBoxStyle.DropDown

    ' Hide drop down button when non edit status.
    comboBoxCell.ShowDropDownButton = CalendarCellButtonVisibility.NotShown

    comboBoxCell.Items.Add("Item1")
    comboBoxCell.Items.Add("Item2")

    Return comboBoxCell
End Function
参照

CalendarComboBoxCellType クラス
CalendarComboBoxCellType メンバ

 

 


© 2014 GrapeCity inc. All rights reserved.