protected virtual bool OnSearchStarting(string text)
        {
            SearchStartingEventArgs e = new SearchStartingEventArgs(text);

            if (this.SearchStarting != null && !this.IsSuspended)
            {
                this.SearchStarting(this, e);
            }

            return(!e.Cancel);
        }
예제 #2
0
 void radMultiColumnComboBox1_SearchStarting(object sender, Implementation.SearchStartingEventArgs e)
 {
 }