AdvancedLauncher.UI.Controls.AutoCompleteBox.AutoCompleteTextBox.SuggestionsAdapter.GetSuggestions C# (CSharp) 메소드

GetSuggestions() 공개 메소드

public GetSuggestions ( string searchText ) : void
searchText string
리턴 void
            public void GetSuggestions(string searchText)
            {
                _filter = searchText;
                _actb.IsLoading = true;
                ParameterizedThreadStart thInfo = new ParameterizedThreadStart(GetSuggestionsAsync);
                Thread th = new Thread(thInfo);
                th.Start(new object[] {
                searchText,
                _actb.Provider
                });
            }