private void NewUserForm_PassTextBox1_Enter(object sender, EventArgs e) { NewUserForm_PassTextBox1.Style = MetroFramework.MetroColorStyle.Blue; Refresh(); NewUserForm_PassTextBox2.Style = MetroFramework.MetroColorStyle.Blue; NewUserForm_PassTextBox2.Refresh(); }
private void NewUserForm_CreateUserButton_Click(object sender, EventArgs e) { if (NewUserForm_PassTextBox1.Text != NewUserForm_PassTextBox2.Text) { NewUserForm_PassTextBox1.Style = MetroFramework.MetroColorStyle.Red; Refresh(); NewUserForm_PassTextBox2.Style = MetroFramework.MetroColorStyle.Red; NewUserForm_PassTextBox2.Refresh(); } }