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

オートコンプリートに使用される補完文字列のソースを指定する値を取得または設定します(System.Windows.Forms.ComboBox.AutoCompleteSourceを参照)。
構文
Public Property AutoCompleteSource As AutoCompleteSource
public AutoCompleteSource AutoCompleteSource {get; set;}

プロパティ値

System.Windows.Forms.AutoCompleteSource値の1つ。既定値はSystem.Windows.Forms.AutoCompleteSource.Noneです。

AutoCompleteModeプロパティがSystem.Windows.Forms.AutoCompleteMode.Noneでない場合、AutoCompleteSourceプロパティをSystem.Windows.Forms.AutoCompleteSource.ListItems以外の値に変更すると、そのComboBoxCellDropDownStyleは自動的にMultiRowComboBoxStyle.DropDownに変更されます。

例外
例外解説
System.ComponentModel.InvalidEnumArgumentException指定された値がSystem.Windows.Forms.AutoCompleteSource値の1つではありません。
解説
System.Windows.Forms.ComboBox.AutoCompleteSourceの解説を参照してください。
使用例
次のサンプルコードは、コンボボックス型セルの動作または外観をカスタマイズする方法を示します。このサンプルコードは、ComboBoxCellクラスに示されている詳細なコード例の一部を抜粋したものです。
ComboBoxCell CreateAutoCompleteComboBoxCell()
{
    ComboBoxCell comboBoxCell = new ComboBoxCell();

    comboBoxCell.DropDownStyle = MultiRowComboBoxStyle.DropDown;
    comboBoxCell.AutoCompleteMode = AutoCompleteMode.SuggestAppend;
    comboBoxCell.AutoCompleteSource = AutoCompleteSource.CustomSource;
    string[] customSourceItems = new string[] { "aaa", "bbb", "ccc", "ddd" };
    comboBoxCell.AutoCompleteCustomSource.AddRange(customSourceItems);

    comboBoxCell.Items.AddRange("(none)", "aaa", "bbb", "ccc", "ddd");

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

    comboBoxCell.DropDownStyle = MultiRowComboBoxStyle.DropDown
    comboBoxCell.AutoCompleteMode = AutoCompleteMode.SuggestAppend
    comboBoxCell.AutoCompleteSource = AutoCompleteSource.CustomSource
    Dim customSourceItems As String() = New String() {"aaa", "bbb", "ccc", "ddd"}
    comboBoxCell.AutoCompleteCustomSource.AddRange(customSourceItems)

    comboBoxCell.Items.AddRange("(none)", "aaa", "bbb", "ccc", "ddd")

    Return comboBoxCell
End Function
参照

ComboBoxCell クラス
ComboBoxCell メンバ
DataSource プロパティ
Items プロパティ
AutoCompleteCustomSource プロパティ
AutoCompleteMode プロパティ

 

 


© 2008-2015 GrapeCity inc. All rights reserved.