I'm having Button component in Vision window. When I disable the buttons, it turns greyish color. How do I edit its background? I want the background to remain the same.
That's a really bad idea, and not necessarily possible with the Swing Look and Feel layer Ignition uses. Why do you want this?
While I agree with Phil in general, in the spirit of answering the question posed, you may get a more accurate color representation when disabled using a different blend mode; look at this thread for more details:
I say may because I haven't ever tested this with a disabled button...because as Phil said, non-standard styling for disabled components tends to confuse end users.
As a general rule, I avoid hacking the look and feel because when unexpected behaviors occur as a result, they are difficult to troubleshoot. If I had a requirement like this, I would probably leave the enabled property set to true and qualify the actionPerformed
event handler of the button with a simple if
statement, so the button doesn't take action if the required conditions aren't met.
That said, if there's no clear indicator to show that the button can't perform its action, I imagine it will become a point of frustration for the user.