I have some useful wpf buttons to test some functionality. It would be good not to show them in release but in debug indeed.
Doing it from code is easy. But I'd prefer a declarative solution.
|
|
|
The only solution I know of is to create a static property somewhere like this:
Then use it in XAML like this:
XAML doesn't have anything for compiler flags. |
||||
|
|
|
As far as I know there is no way to use the Configuration constants (Debug, Release) from XAML. |
|||
|
|
Not sure what the difference is between this and Steven's approach, but I used his property as a non-static property in a non-static class, and referenced it like such:
|
|||
|
|