コード例 #1
0
        private void mnuViewSeasonstats_Click(object sender, EventArgs e)
        {
            PlayLogForm dlg = new PlayLogForm();

            dlg.WindowTitle = "Season Statistics";

            dlg.LogText = league.SeasonStats;

            dlg.Show();
        }
コード例 #2
0
        private void ShowPlayLog()
        {
            PlayLogForm dlg = new PlayLogForm();

            dlg.LogText = engine.GameLog;

            dlg.Show();
        }
コード例 #3
0
        private void mnuViewGamestats_Click(object sender, EventArgs e)
        {
            PlayLogForm dlg = new PlayLogForm();

            dlg.LogText = engine.GameStats;

            dlg.Show();
        }