示例#1
0
        private void ShowStats()
        {
            if (statsForm != null)
            {
                if (statsForm.IsDisposed)
                {
                    statsForm = null;
                }
            }

            if (statsForm == null)
            {
                statsForm = new StatsForm(this);
                //statsForm.Init();
            }

            statsForm.Show();
        }
示例#2
0
        private void ShowStats()
        {
            if (statsForm != null)
                if (statsForm.IsDisposed)
                    statsForm = null;

            if (statsForm == null)
            {
                statsForm = new StatsForm(this);
                //statsForm.Init();
            }

            statsForm.Show();
        }