The visualstatemanager tag has no wiki summary.
0
votes
1answer
29 views
VisualStateManager and MVVM
I'm working on a Windows 8 Store App (using the Grid App Template) and while I'm loading data from a server I want to show a ProgressRing and hide the GridView or ListView (depends on if the app is ...
0
votes
1answer
21 views
Using local brush resources for Visual States
I'm trying to template a button in Blend and I have the following structure:
What I would like to do is to change the background color of the button using Visual States when it is in the MouseOver ...
0
votes
1answer
35 views
WPF VisualStateManager.GoToState
I try to change the state for all the buttons in my program
I got this style for button:
<Style TargetType="{x:Type Button}">
<Setter Property="Foreground" Value="White"/>
...
0
votes
1answer
52 views
How to change Data of a Path in WPF?
Using Visual state manager, How to change the Data for a Path. i have changed it by ObjectAnimationUsingKeyFrames in Silverlight but the same cant be used in WPF. Below i got an error that cant find ...
1
vote
1answer
43 views
Binding and VisualStateManager do not work together
I have VisualStateManager to control when the State occurs, the control is enabled:
Here is the property of the state (string):
states:StateManager.VisualStateProperty="{Binding SomeProp}"
Here ...
0
votes
0answers
50 views
WPF templating difference between triggers and visualStateManager
I would like to know what difference is between triggers and visualStateManager. I am templating ComboBox and on the official MSDN sites (http://msdn.microsoft.com/en-us/library/ms752094.aspx) they ...
0
votes
1answer
39 views
ContentControl VisualStateManager
I've a ContentControl which binds it Content to a variable
<ContentControl x:Name="MyContentControl" Content="{Binding MyContent}" />
The ContentControl is in my view 'MainPage.xaml'
When ...
0
votes
0answers
35 views
Reset of VisualState manager doesn't works
How to reset a silverlight control's visual state back to "Normal" on change of visibility
In the above link, the same thing was discussed, though i have some problem with changing the ...
0
votes
1answer
22 views
VisualStateManager applys in Visual Studio, but not in the app
I've got a view which looks like this:
http://www.imgbox.de/users/public/images/W3pITuCTOw.png
As you can see, it's the standard Design.
When I click in Visual Studio at 'Snapped', it looks like ...
0
votes
3answers
203 views
Set button as selected state and change style
This is my actual button style:
<Style x:Key="CategoryButtonStyle" TargetType="{x:Type Button}">
<Setter Property="HorizontalContentAlignment" Value="Center"/>
<Setter ...
0
votes
3answers
81 views
VisualStateManager Focus state remains after focus
I have a WinRT app control template for a textbox. I want the background to go gray when the control is in focus. The code below does this, but when the control loses focus the gray background ...
0
votes
0answers
55 views
How to make visual states in WPF behave correctly after rotatetransform?
I have defined a UserControl in my WPF application that consists of a panel that slides out from the edge of the screen when the mouse hovers over it, and back again when the mouse leaves the panel. ...
0
votes
0answers
164 views
Windows 8 Metro VisualStateManager to set property on Control
I'm having a frustrating experience transferring from WPF to Windows Store App development. First, I wanted to use an Expander control - but this isn't included for Metro. Really wanting one, I ...
0
votes
0answers
14 views
Fade Transition when changing Data of a Path
I have a Silverlight custom control inhertiting a Path.
When I change the Data Property of the Path (means when it is changed by binding), the new Data shouldnt be immeadiatly displayed but insetead ...
0
votes
1answer
37 views
VisualStateManager silverlight
Hello I am stuck on getting my VisualState working properly. What I am trying to achieve is setting a border colour on user input so what I do is this
VisualStateManager.GoToState(textbox, ...
0
votes
1answer
85 views
Animation for Button's Pressed VisualState doesn't fire
I'm working on a Windows Phone 8 project. My issue with this button:
<Button x:Name="decreaseFontButton" Foreground="{StaticResource GlobalBrush}">
...
0
votes
1answer
64 views
Can't reuse style in silverlight 5
I create a custom image button and add some style. everything works fine. But when i try to reuse it in other buttons, it didn't work very well. only 1 button will follow the style, others are always ...
0
votes
0answers
127 views
Overriding ControlTemplate - VisualState MouseOver is only performed on MouseClick
I have overridden the default Template of a scrollbar. It is simply a Rectangle and a Arrow Picture. I have 2 Pictures one for the Normal State and one for MouseOver.
In my VisualStates I change the ...
0
votes
1answer
28 views
Switching between static-width and Auto-width with Visual States
I'm having a minor issue with my current app, dealing with visual states and automatic / static widths.
Depending on the visual state, a StackPanel either has a width="Auto" or width="400". Blend is ...
0
votes
0answers
19 views
Sharing string constants between xaml and code behind - VisualStates
Is there an efficient way to share a string such as a VisualState name between the xaml and the code-behind?
It seems to me this would go a long way in eliminating errors due to misspelling a state ...
0
votes
1answer
55 views
VisualState example in c++?
Can someone provide a C++ example for the following equivalent C#?
VisualStateManager.GoToState(this, "statename", true);
I don't know C++ and am working to convert some animations for another ...
0
votes
0answers
35 views
LayoutAwarePage Popup not rearranging size between VisualStates
I have a Grid inside a LayoutAwarePage. This covers the whole page. Inside this I have GridView listing items. I also have two Popups covering the first Grid, one for detailed view of a selected item ...
0
votes
1answer
80 views
StateHelper (VisualStateManager with MVVM)
Question based on StackOverflow (answered) or you could see StateHelper itself (updated) on GitHub
It works! But I don't understand which way that helper resolve dependency view model from view, when ...
0
votes
1answer
191 views
How to disable/enable a VisualState based on some condition? (Metro)
I defined a VisualState for a button in a controltemplate:
<ControlTemplate x:Key="ButtonTemplate" TargetType="Button">
...
<VisualStateManager.VisualStateGroups>
...
0
votes
2answers
559 views
VisualStateManager — showing mouseover state when control is focused
I am creating a WPF button using Windows 8 styling (formerly metro).
I would like the focused state of the button to show with a solid background. When the mouse is over the control, I would like th ...
0
votes
2answers
290 views
getting the current VisualState in WinRT
I'm trying to get an object's current VisualState. I found an answer on SO that this isn't possible, and another blog elsewhere that I should be able to get these like this:
var currentState = ...
0
votes
2answers
197 views
VisualState Name and GroupName, WinRT WinPRT
I'm trying to set custom visual states of multiple items like Button, GridViewItem, and ListBoxItem. It seems like I'm missing some states. I searched through the stackoverflow and msdn and could not ...
1
vote
1answer
415 views
Xaml - VisualStates - changing background between color and animation
I have custom control which looks like this:
<Style TargetType="local:AnswerButton">
<Setter Property="Background" Value="{StaticResource BlueGradient}"/>
<Setter ...
0
votes
0answers
156 views
Use Visual State Manager to set style of TabItem with a template as a button that has template of a textblock
I am working on a xaml only solution using the visual state manager to change the background and font colors of our tabs. If it is selected, then the background is green and the foreground is white. ...
0
votes
1answer
42 views
Is there any way to link/connect VisualState of multiple controls?
Suppose there's 2 buttons, can I tie the PointerOver/Pressed states of the 2 buttons so that they behave as one?
0
votes
0answers
234 views
Why is the image button normal state invisible - XAML Windows Phone
I am trying to add an image button in XAML with a different normal and pressed image. But why is the normal state invisible using the following XAML? Only the pressed state works but once the button ...
1
vote
0answers
114 views
Silverlight, VisualStateManager gotostate doesn't work with datatemplates
I have a button with name "PART_closeButton" inside ContentPresenter. I am defining some visual states for my button.
<VisualStateGroup x:Name="CommonStates">
<VisualState ...
2
votes
1answer
320 views
Benefits in using the Visual State Manager over handling Current_SizeChanged event in code (WinRT, XAML)
I'm writing my first WinRT app for Windows 8 in C#/XAML managed code and I obviously have to handle the UI in the different sizes and orientations that could occur (FullScreenLandscape, ...
0
votes
1answer
100 views
VisualStateManager doesn't skip 'non-generated' transitions
The VisualState tools in Blend / WPF / Silverlight are great but I think we can all agree that that are trés buggy on occasion. Here is an example and I would like some clarification / a workaround / ...
2
votes
1answer
372 views
Can I change the VisualState of a DataTemplate in a ItemTemplate?
I have some controls in a DataTemplate and I'd like to control it's pressed state behaviour. I did the following where I just put in VisualStateManager in the DataTemplate but it doesn't seem to work. ...
0
votes
1answer
98 views
Override a visualstate in a style without overriding the controltemplate
I'm trying to tweak an existing (rather complex) control just a little bit. So far I can make the changes all in the style, apart from some tweaks to the animations.
I know I can override the ...
7
votes
2answers
321 views
How do I change the VisualState in WP7
I've defined the following two states in Expression Blend. I've been trying to follow this guide but I feel like it leaves me hanging when I need information on how and when to change state.
...
2
votes
0answers
211 views
WPF animation in datatemplate using VisualStateManager
It's pretty common issue when you trying to input a visualStates for some datatemplate.
The code below works fine, but only if I use a FrameworkElement, such a custom UserControl:
...
4
votes
1answer
129 views
VisualStateManager can't generate transitions for ThicknessAnimations
I have the following Visual States defined:
<VisualStateManager.VisualStateGroups>
<VisualStateGroup Name="EditStates">
<VisualStateGroup.Transitions>
...
0
votes
1answer
118 views
VisualStateManager messes up when I specify a default duration
I'm trying to use the VisualStateManager to manage my control states. The following works fine and gives me a one second animation between states.
<VisualStateManager.VisualStateGroups>
...
0
votes
2answers
628 views
Custom Layout Aware Controls
I want to write a custom control and want it to have different Padding if the page is Portrait or Snapped. I noticed that pages inherit from LayoutAwarePage which creates support for the following ...
1
vote
1answer
105 views
Use control parts or visual state manager, or both?
I have written a custom control. I currently have several control templates that all duplicate a lot of triggers for showing/hiding stuff etc. I am trying to move some of this functionality into the ...
2
votes
1answer
206 views
Can one set visual state for PhoneApplicationPage?
I have a question about visual state management of PhoneApplicationPage. Basically, can one use VisualStateManager approach to set states of the page itself? In the end, it inherits the Control class, ...
2
votes
2answers
1k views
Animating visibility AND opacity with wpf VisualStateManager
I am trying to animate a control so that it's visibility is set to visible then animating the opacity from 0 to 1
However nothing happens, then after 1 second the control is show with an opacity of ...
0
votes
1answer
270 views
Show/Hide views using Visual State Manager silverlight & PRISM
I have an application that display different datasets (users, nationality, etc) on the screen using radOutlookbar.
I have manage to load the required views in each item to display the data with no ...
0
votes
1answer
324 views
Bind rectangle's Fill color to Foreground color
I have a custom control inside a button. In the control's template, I have a rectangle, and a text block. When the button is pressed, VSM animates the button's ...
1
vote
1answer
200 views
Can the Visual State Manager in WPF 4 swap out control templates / styles?
I can't seem to find a definitive answer for this so I thought it might help others looking to just ask the question. Can the VSM be used to swap out templates.
As an example, If I have a user ...
2
votes
1answer
1k views
Changing properties of controls in ItemTemplate in VisualStateManager (WinRT XAML)
I have ListView that I am using for both my SnapView and Portrait view. However I'd like to change some items of my item template in both those views. The VisualStateManager seems like the ideal place ...
2
votes
1answer
109 views
Why is this ColorAnimation not starting?
I'm trying to get a ColorAnimation to occur depending on the control's state. I created a ControlTemplate for the ToggleButton that looks something like this:
<ControlTemplate ...
1
vote
0answers
276 views
How is ExtendedVisualStateManager.GoToElementState supposed to be used
I have following visual state definitions:
<VisualStateManager.CustomVisualStateManager>
<ec:ExtendedVisualStateManager/>
</VisualStateManager.CustomVisualStateManager>
...


