示例#1
0
文件: History.cs 项目: ogirard/lyra2
 public static void ShowHistory(GUI owner)
 {
     if (_this == null)
     {
         _this = new History(owner);
         LoadPersonalizationSettings(owner.Personalizer);
     }
     _this.Show();
     _this.Focus();
 }
示例#2
0
文件: History.cs 项目: ogirard/lyra2
 private void History_Closing(object sender, CancelEventArgs e)
 {
     View.HistoryChanged -= this.changedHandler;
     StorePersonalizationSettings(owner.Personalizer, false);
     _this = null;
 }