Ejemplo n.º 1
0
 /// <summary>
 /// показать настройки
 /// </summary>
 public void ShowDialog()
 {
     if (_ui == null)
     {
         _ui = new OandaServerUi(this, _logMaster);
         _ui.Show();
         _ui.Closing += (sender, args) => { _ui = null; };
     }
     else
     {
         _ui.Activate();
     }
 }
Ejemplo n.º 2
0
        /// <summary>
        /// вызвать окно настроек
        /// </summary>
        public void ShowDialog()
        {
            OandaServerUi ui = new OandaServerUi(this, _logMaster);

            ui.Show();
        }