我一直在使用代碼AutoCompleteStringCollection
:如何在C#中使用AutoComplete獲取事件「item selected」?
private void txtS_TextChanged(object sender, EventArgs e)
{
TextBox t = sender as TextBox;
string[] arr = this.dbService.GetAll();
if (t != null)
{
if (t.Text.Length >= 3)
{
AutoCompleteStringCollection collection = new AutoCompleteStringCollection();
collection.AddRange(arr);
this.txtSerial.AutoCompleteCustomSource = collection;
}
}
}
我怎樣才能爲「選擇項」用戶選擇自動完成建議後的事件?和領域的價值?
從自動完成列表中選擇的項目? – 2014-10-30 00:27:19
是的。從「自動完成」列表中選擇的項目。 – 2014-10-30 00:31:21