StartSearch() public method

Allows caller to programatically activate the search bar and start the search process
public StartSearch ( ) : void
return void
            public override void OnEditingStarted(UISearchBar searchBar)
            {
#if !__TVOS__
                searchBar.ShowsCancelButton = true;
#endif
                container.StartSearch();
            }
Esempio n. 2
0
 public override void OnEditingStarted(UISearchBar searchBar)
 {
     searchBar.ShowsCancelButton = true;
     container.StartSearch();
 }