Forex_Strategy_Builder.Actions.ShowPriceLine_OnClick C# (CSharp) 메소드

ShowPriceLine_OnClick() 보호된 메소드

Menu ShowPriceLine_OnClick.
protected ShowPriceLine_OnClick ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
리턴 void
        protected override void ShowPriceLine_OnClick(object sender, EventArgs e)
        {
            ToolStripMenuItem mi = (ToolStripMenuItem)sender;
            Configs.ShowPriceChartOnAccountChart = mi.Checked;

            smallBalanceChart.SetChartData();
            smallBalanceChart.InitChart();
            smallBalanceChart.Invalidate();

            return;
        }
Actions