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

AutoCompleteSourceプロパティがCustomSourceに設定されているときに使用する、カスタムのSystem.Collections.Specialized.StringCollectionを取得または設定します(System.Windows.Forms.ComboBox.AutoCompleteCustomSourceを参照)。
構文
Public Property AutoCompleteCustomSource As AutoCompleteStringCollection
public AutoCompleteStringCollection AutoCompleteCustomSource {get; set;}

プロパティ値

AutoCompleteSourceで使用される候補文字列を表すSystem.Collections.Specialized.StringCollection値。
解説
System.Windows.Forms.ComboBox.AutoCompleteCustomSourceの解説を参照してください。
使用例
次のサンプルコードは、コンボボックス型セルの動作または外観をカスタマイズする方法を示します。このサンプルコードは、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 プロパティ
AutoCompleteSource プロパティ
AutoCompleteMode プロパティ

 

 


© 2008-2015 GrapeCity inc. All rights reserved.