1
vote
1answer
34 views

How to change templated control's properties from VisualState?

If I define VisualStates from within a control template, is it possible to change the properties of the templated control itself from a storyboard? Here's a quick example: <Window ...
0
votes
1answer
326 views

On Mouse over / on Getting focus, The Button Disappers in windows 8 metro app, How to disable that effect?

In Many places in my application i am using buttons in the UI but my doubt is :- 1)when a button gets focus or when it is getting mouse over also , the button background disappears (i.e, it becomes ...
0
votes
2answers
175 views

ColorAnimationUsingKeyFrames changes brush

Well hi, I am kind of new to WPF and this is the first time I tried change styles of WPF controls. Thanks to Expression Blend everything went better than expected until I made this style. <Style ...
0
votes
0answers
146 views

XAML: Set styles of certain cotnrols in Visual State

Little question: I have a small C#/XAML Metro app. Depending on the underlying data item, a stackpanel is filled dynamically with input controls. The input controls all have one specific style and can ...
1
vote
1answer
592 views

Moving object using code behind and using xaml

im using blend 4 to make a wpf application i have a wrapPanel defined in xaml: <WrapPanel x:Name="WrapPanel_ShowMe"> when i enter a certain visual state, the code-behind the wrapPanel to a ...
0
votes
3answers
259 views

Silverlight Change Content Based on Control CheckState (Toggle multiple ContentPresenters)

I would like to change the content of a control based on its current CheckState (checked, unchecked, indeterminate). If possible I would like the solution to use only XAML and require no code behind. ...
1
vote
1answer
332 views

How to change VisualState via ViewModel

I know this Question is similar to many. Anyway, I don't understand. I have a several VisualStates (more than 2, thats why DataStateBehavior is not my solution). And I have ViewModel, which have enum ...
0
votes
1answer
460 views

Create a slide down animation/storyboard for an element?

I'd like to create a slide-down animation for an Grid element in my WPF (.net 4.0) application. I assumed that I could do the following: create a visual state (closed, ...
0
votes
1answer
191 views

Control goes into a visual state - but actual visual states are not getting updated through xaml

I have two controls - control 2 inside of control 1. Control 1 and Control 2 have visual states. I am facing the following problem: Control 2 goes into a visual state, (have put a Debug.Write in ...