Exemple #1
0
        private void ShowChartForm()
        {
            FormChart form = new FormChart(ExchangeManager.GetMarketByMarketName(toolStripComboBoxMarket.Text));

            form.parent = this;
            form.Show();
        }
Exemple #2
0
        private void buttonShowGraphic_Click(object sender, EventArgs e)
        {
            FormChart form = new FormChart(ExchangeManager.GetMarketByMarketName(tradeLogic.GetMarketName()), tradeLogic.ticker);

            form.parent = this;
            form.Show();
        }