Dear all at the begining of my application i disable some buttons and according to some conditions these buttons became enabled. my problem is when the user clicks on a button then it does my action its color becomes gray and that when i make it disabled again. for more explanation:
button.Enabled = false;
if(Condition) { button.enabled =true; }
// user clicked on button
// do button's function
button.Enabled= false; // here the button's color becomes gray and i dont want this attitude i want to be enabled where at the begining of the application when all buttons are disabled its color is qiut simmilar to button's background. So why this color ?