private void Remove()
 {
     if (this.SelectedItem != null)
     {
         Matchs.Remove(this.SelectedItem);
     }
 }
예제 #2
0
        /// <summary>
        /// Applique la suppression du jedi courant.
        /// </summary>
        private void Remove()
        {
            if (this.SelectedItem != null)
            {
                if (this.SelectedItem.Match.ID >= 0)    // Notifie que pour les matchs déjà en BDD
                {
                    OnRemoveMatch(this.SelectedItem.Match);
                }

                Matchs.Remove(this.SelectedItem);
            }
        }