No matter what I change the Background property to in a button it hardly changes, what am I supposed to do if I want a completely different colored button?
I know I can do this via editing a template of a button, but this seems like overkill.
|
No matter what I change the Background property to in a button it hardly changes, what am I supposed to do if I want a completely different colored button? I know I can do this via editing a template of a button, but this seems like overkill.
| |||
feedback
|
|
This looks like an issue with SilverLight 2.0 and the default ContentTemplate for a Button. I took a look at the source:
The issue is the Rectangle with it's own Background is on top of the Grid which has the Background you've set. (Also, the Border is hard-coded to White). We can fix this using our own ContentTemplate, but that means also adding all the VisualStatManager stuff to get all the animations that go along with the Button. A second method is to subclass Button, and modify the template in the OnApplyTemplate override. Here is an example that lowers the opacity of the stock Button so the background shows through:
| |||||
feedback
|
|
I am not quite sure what do you mean by "button hardly changes" but when I write | |||
|
feedback
|
|
I had the same problem. But I did workaround. Instead of changing button background color, I set the border width of button to 100, and then set the color for border, for example gray. So you will have gray button. I know this is not good way, but it worked for me. Hope it helps Here is code example:
| |||
|
feedback
|