Exemple #1
0
        private void showChartInfo_ItemClick(object sender, ItemClickEventArgs e)
        {
            BeginLoadChart(lastChartName, lastChartLoader);

            if (infoForm != null && infoForm.Visible)
            {
                infoForm.UpdateData(chart, seats.Rows);
                infoForm.Activate();
            }
            else
            {
                infoForm = SeatingChartInfo.Show(MdiParent, chart, seats.Rows);
            }
        }