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

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

プロパティ値

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

    comboBoxCell.DropDownStyle = MultiRowComboBoxStyle.DropDown;

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

    comboBoxCell.Items.AddRange("Item1", "Item2");

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

    comboBoxCell.DropDownStyle = MultiRowComboBoxStyle.DropDown

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

    comboBoxCell.Items.AddRange("Item1", "Item2")

    Return comboBoxCell
End Function
参照

ComboBoxCell クラス
ComboBoxCell メンバ

 

 


© 2008-2015 GrapeCity inc. All rights reserved.