Exemplo n.º 1
0
 public static void ShowFavorites(GUI owner)
 {
     if (_this == null)
     {
         _this = new Favorites(owner);
         LoadPersonalizationSettings(owner.Personalizer);
     }
     _this.Show();
     _this.Focus();
 }
Exemplo n.º 2
0
 private void Favorites_Closing(object sender, CancelEventArgs e)
 {
     StorePersonalizationSettings(owner.Personalizer, false);
     _this = null;
 }