Ejemplo n.º 1
0
 /// <summary>
 /// Handles click on "Remove item from custom list". Removes an item to user's custom MFU list.
 /// </summary>
 private void ExcludeCustom(object sender, RoutedEventArgs e)
 {
     MfuList.RemoveCustom(Util.ExtractRelatedPowerItem(e));
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Handles click on "Remove item". Adds an exclusion to exclusions list.
 /// </summary>
 private void RemoveItemClick(object sender, RoutedEventArgs e)
 {
     MfuList.AddExclusion(Util.ExtractRelatedPowerItem(e));
 }