VB.NET ComboBox 模糊查詢下拉式選單

下拉選單
可模糊查詢的下拉選單
        Dim authors As New AutoCompleteStringCollection
        With authors
            .Add("Keelung")
            .Add("Taipei")
            .Add("Taoyuan")
            .Add("Hsinchu")
            .Add("Miaoli")
            .Add("Taichung")
            .Add("Changhua")
            .Add("Nantou")
            .Add("Chiayi")
            .Add("Yunlin")
            .Add("Tainan")
            .Add("Kaohsiung")
            .Add("Pingtung")
            .Add("Taitung")
            .Add("Hualien")
            .Add("Ilan")
        End With

        With ComboBox1
            .AutoCompleteMode = AutoCompleteMode.Suggest
            .AutoCompleteSource = AutoCompleteSource.CustomSource
            .AutoCompleteCustomSource = authors
            .DataSource = authors
            .SelectedIndex = -1
        End With

沒有留言:

張貼留言