When I change a .NET Button's BackColor back to its original value, it doesn't look the same anymore
I have a button which I wanted to "flash" briefly to get the user's attention. I figured the easiest way would be to change the Button's BackColor property to another color, and then switch it back again. So I do something like this: this.oldColor = myButton.BackColor; myButton.BackColor = Color.Blue; and then after a about 1/2 a seco...