Sorry for such a rudimentary question, but I am not experienced in Blend 4 much at all.

What I need to do, and based on the little I know or have seen it seems that Blend is the place to do it, is to create a "state" for a button to appear when it is disabled. i.e., the button I'm working with is a Sign Out button...the button IsEnabled property is bound to the WebContext.User.IsAuthenticated property. So, when the app is loading I want the button's "disabled state (<-- created in Blend?) to appear...once authentication is completed, the binding to IsEnabled will change, and I want the button's "enabled state" to kick in. How to accomplish this? Thanks in advance.

link|improve this question
Can you post what XAML code you have now? – Mike Post Aug 22 '11 at 17:28
feedback

1 Answer

Your problem looks extremely similar to an issue I was having the other day.

If you go to this thread you may be able to use that as a solution: http://stackoverflow.com/questions/7084149/expression-blend-interaction-how-to-set-trigger-to-look-for-isenabled-value-of-b

I have a Boolean value there called "IsSavedAllowedBool". You would want to replace that with whatever bool you are binding to - which looks as if it might be WebContext.User.IsAuthenticated.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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