예제 #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);
                }
            }
        }