C#에서 텍스트 상자에 자동 완성 기능을 추가할 때 기존 솔루션에서는 접두사 기반 검색만 허용했습니다. 이러한 제한을 극복하고 보다 유연한 검색 옵션을 활성화하려면 사용자 정의 구현이 필요합니다.
한 가지 접근 방식은 OnTextChanged 이벤트를 재정의하고 사용자 정의 자동 완성 논리를 구현하는 것입니다. 이는 텍스트 상자 아래에 목록 보기를 만들고 사용자 입력에 따라 동적으로 채우는 방식으로 수행할 수 있습니다.
예를 들어 다음은 기본적인 구현입니다.
public Form1() { InitializeComponent(); acsc = new AutoCompleteStringCollection(); textBox1.AutoCompleteCustomSource = acsc; textBox1.AutoCompleteMode = AutoCompleteMode.None; textBox1.AutoCompleteSource = AutoCompleteSource.CustomSource; } private void button1_Click(object sender, EventArgs e) { acsc.Add("[001] some kind of item"); acsc.Add("[002] some other item"); acsc.Add("[003] an orange"); acsc.Add("[004] i like pickles"); } void textBox1_TextChanged(object sender, System.EventArgs e) { listBox1.Items.Clear(); if (textBox1.Text.Length == 0) { hideResults(); return; } foreach (String s in textBox1.AutoCompleteCustomSource) { if (s.Contains(textBox1.Text)) { Console.WriteLine("Found text in: " + s); listBox1.Items.Add(s); listBox1.Visible = true; } } } void listBox1_SelectedIndexChanged(object sender, System.EventArgs e) { textBox1.Text = listBox1.Items[listBox1.SelectedIndex].ToString(); hideResults(); } void listBox1_LostFocus(object sender, System.EventArgs e) { hideResults(); } void hideResults() { listBox1.Visible = false; }
이 접근 방식을 사용하면 다음과 같은 작업을 수행할 수 있습니다. 문자열에서의 위치에 관계없이 항목을 검색합니다. 텍스트 추가, 키보드 명령 캡처 등과 같은 추가 기능을 추가하여 구현을 더욱 향상시킬 수 있습니다.
위 내용은 C#에서 접두사 일치 이상의 유연한 자동 완성 기능을 구현하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!