cloudflight
2023-12-02 1a5ef6b2bf25de50b685b44299d9a049a2feac80
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
 
namespace CloudWaterNetwork
{
    // 自定义 DataGridViewComboBoxColumn 类
    public class SearchableComboBoxColumn : DataGridViewComboBoxColumn
    {
        public SearchableComboBoxColumn()
        {
            CellTemplate = new SearchableComboBoxCell();
        }
    }
 
    public class SearchableComboBoxCell : DataGridViewComboBoxCell
    {
        public SearchableComboBoxCell()
        {
            Style =new DataGridViewCellStyle() { };// DataGridViewComboBoxCellStyle.DropDown;
            AutoComplete = true;
           
            //AutoCompleteMode = AutoCompleteMode.SuggestAppend;
            DataSource = new List<string> { "Apple", "Banana", "Cherry", "Durian", "Elderberry", "Fig" };
        }
    }
}