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" };
|
}
|
}
|
}
|