예제 #1
0
 private void FavoritesSearchFound(object sender, FavoritesFoundEventArgs args)
 {
     this.searchResultsPanel.LoadFromFavorites(args.Favorites);
 }
예제 #2
0
 private void SearchTextBox_Found(object sender, FavoritesFoundEventArgs args)
 {
     this.searchPanel1.LoadFromFavorites(args.Favorites);
     this.searchPanel1.Visible = true;
     this.favsTree.Visible = false;
 }
예제 #3
0
 private void FavoritesSearchFound(object sender, FavoritesFoundEventArgs args)
 {
     this.searchResultsPanel.LoadFromFavorites(args.Favorites);
 }
 private void FavoritesSearchBoxFound(object sender, FavoritesFoundEventArgs e)
 {
     this.foundFavorites = new SortableList<IFavorite>(e.Favorites);
     this.UpdateFavoritesBindingSource();
 }