Изменение кода формы пароля для visual studio 2017 C# .NET framework 4
I am using Visual Studio 2017 C# .NET Framework 4 I have two forms My first form has the code below that works. Enter password and click OK //manually define password because we are not using any database string Password = "password"; if (Password == textBox1.Text) { } else { MessageBox.Show("You have entered an incorrect password, Please re-enter your password again!"); OK Cancel My second form has this Does anyone have the code to make this work so the user can change their password? Enter your current password Enter your new password Enter your new password again OK Cancel
Что я уже пробовал:
Я смог создать свою первую форму и код для ввода пароля и нажмите кнопку ОК, но я не могу понять, как создать код, чтобы пользователь мог изменить свой пароль.