/// <summary> /// показать окно с настройками /// </summary> public void ShowDialog() { StochasticOscillatorUi ui = new StochasticOscillatorUi(this); ui.ShowDialog(); if (ui.IsChange && _myCandles != null) { Reload(); } }
/// <summary> /// показать окно с настройками /// </summary> public void ShowDialog() { StochasticOscillatorUi ui = new StochasticOscillatorUi(this); ui.ShowDialog(); if (ui.IsChange && _myCandles != null) { ProcessAll(_myCandles); if (NeadToReloadEvent != null) { NeadToReloadEvent(this); } } }