Tuesday, September 11, 2018

Disable and reenable a button in WinForms!

this.submit.Enabled = false;
DoWhatYouWill();
this.submit.Enabled = true;

No comments:

Post a Comment