CapDemo.GUI.User_Controls.New_Game.New_Game_DoubleClick C# (CSharp) Метод

New_Game_DoubleClick() приватный Метод

private New_Game_DoubleClick ( object sender, EventArgs e ) : void
sender object
e EventArgs
Результат void
        private void New_Game_DoubleClick(object sender, EventArgs e)
        {
            ContinueSetting continueSetting = new ContinueSetting();
            continueSetting.ContestID = Convert.ToInt32(lbl_IDContest.Text);
            continueSetting.Run = run;

            DialogResult result = continueSetting.ShowDialog();
            if (result == DialogResult.OK)
            {
                load();
            }
            else
            {
                load();
            }
        }