示例#1
0
        private void OpenGame(int id)
        {
            FormMainMenu form1 = new FormMainMenu(id);

            form1.Parent = this;
            this.Hide();
            this.tbxUsername.Text         = "Username";
            this.tbxUsername.ForeColor    = SystemColors.InactiveCaption;
            this.tbxPassword.Text         = "Password";
            this.tbxPassword.ForeColor    = SystemColors.InactiveCaption;
            this.tbxPassword.PasswordChar = '\0';
            this.btnSignIn.Text           = "Sign in";
            this.btnCreateAccount.Visible = true;
            this.Height = 206;

            form1.Show();
        }
        private void OpenGame(int id)
        {
            FormMainMenu form1 = new FormMainMenu(id);
            form1.Parent = this;
            this.Hide();
            this.tbxUsername.Text = "Username";
            this.tbxUsername.ForeColor = SystemColors.InactiveCaption;
            this.tbxPassword.Text = "Password";
            this.tbxPassword.ForeColor = SystemColors.InactiveCaption;
            this.tbxPassword.PasswordChar = '\0';
            this.btnSignIn.Text = "Sign in";
            this.btnCreateAccount.Visible = true;
            this.Height = 206;

            form1.Show();
        }