示例#1
0
 /// <summary>
 /// Invoked when the user selects to remove a search query from a playlist
 /// </summary>
 /// <param name="sender">The sender of the event</param>
 /// <param name="e">The event data</param>
 private void Search_RemoveClick(object sender, GenericEventArgs <string> e)
 {
     DispatchRemoveSearch(e.Value);
 }
示例#2
0
 /// <summary>
 /// Invoked when the user selects to add a search query to an existing playlist
 /// </summary>
 /// <param name="sender">The sender of the event</param>
 /// <param name="e">The event data</param>
 private void Search_AddClick(object sender, GenericEventArgs <string> e)
 {
     DispatchAddSearch(e.Value);
 }