Пример #1
0
 public void HideColorsHistory()
 {
     _colorsHistoryWindow?.Close();
     _colorsHistoryWindow = null;
 }
Пример #2
0
 public void ShowColorsHistory()
 {
     _colorsHistoryWindow = new ColorsHistoryWindow(_userSetting.ColorsHistory);
     _colorsHistoryWindow.Show();
 }