Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

3 Answers

up vote 6 down vote accepted

The only solution I know of is to create a static property somewhere like this:

    public static Visibility IsDebug
    {
#if DEBUG
        get { return Visibility.Visible; }
#else
        get { return Visibility.Collapsed; }
#endif
    }

Then use it in XAML like this:

<MyControl Visibility="{x:Static local:MyType.IsDebug}" />

XAML doesn't have anything for compiler flags.

share|improve this answer

As far as I know there is no way to use the Configuration constants (Debug, Release) from XAML.
So the best you can get is to bind the Visibility property of the buttons to a Debug property on your datacontext. But setting that property would still require some code.

share|improve this answer
Maybe a custom element or attribute? I'm quite new to WPF so don't take this "idea" seriously. – naeron84 Mar 12 '10 at 16:21

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:

<local:MyClass x:Key="MyClass" />
<MyControl Visibility="{Binding IsDebug, Source={StaticResource MyClass}, Mode=OneTime}" />
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.