private void ShowChartForm() { FormChart form = new FormChart(ExchangeManager.GetMarketByMarketName(toolStripComboBoxMarket.Text)); form.parent = this; form.Show(); }
private void buttonShowGraphic_Click(object sender, EventArgs e) { FormChart form = new FormChart(ExchangeManager.GetMarketByMarketName(tradeLogic.GetMarketName()), tradeLogic.ticker); form.parent = this; form.Show(); }