示例#1
0
文件: Adx.cs 项目: w1r2p1/OsEngine-1
        /// <summary>
        /// display settings window
        /// показать окно настроек
        /// </summary>
        public void ShowDialog()
        {
            AdxUi ui = new AdxUi(this);

            ui.ShowDialog();

            if (ui.IsChange && _myCandles != null)
            {
                Reload();
            }
        }
示例#2
0
文件: Adx.cs 项目: vovamagik/project
        /// <summary>
        /// показать окно настроек
        /// </summary>
        public void ShowDialog()
        {
            AdxUi ui = new AdxUi(this);

            ui.ShowDialog();

            if (ui.IsChange && _myCandles != null)
            {
                ProcessAll(_myCandles);

                if (NeadToReloadEvent != null)
                {
                    NeadToReloadEvent(this);
                }
            }
        }