Tagged Questions
The visualstatemanager tag has no wiki summary.
9
votes
3answers
2k views
How to go back to “Base” state using VisualStateManager?
I know we can use
VisualStateManager.GoToState(this,"SomeState1",true);
to enter into SomeState1 , but now how to go back to the base state, like no state, the state where the control was loaded ...
7
votes
2answers
1k views
In a button's control template, how can I set the color of contained text?
Using Silverlight 4 & WPF 4, I'm trying to create a button style that alters the text color of any contained text when the button is mouseover'd. Since I'm trying to make this compatible with both ...
6
votes
2answers
947 views
Binding [VisualStateManager] view state to a MVVM viewmodel?
How do you bind the VisualStateManager state of a control to a property in you viewmodel?
Can it be done?
5
votes
3answers
2k views
WPF visual state manager in Blend 2 sp1
Can anyone explain to me how to get the visual state manager to work with a WPF application? It's just been added to the new wpftoolkit. I installed it as told, but even the sample doesn't show the ...
4
votes
1answer
931 views
WPF change visual state of datatemplate when selected in a listbox
If I have a WPF ListBox which has a basic ItemTemplate that contains a custom user control, how can I tell the user control in the DataTemplate to change its visual state when its selected in the ...
4
votes
3answers
1k views
How to wait for state changing transition to finish in Silverlight 4?
I need to change state of a control and then do some action. To be specific, I want to run an animation before a control is hidden. I would like to do something like that:
...
4
votes
2answers
758 views
Setting a Visual State from a data bound enum in WPF
Hey all, I've got a scenario where I want to switch the visiblity of 4 different content controls. The visual states I have set opacity, and collapsed based on each given state (See code.) What I'd ...
3
votes
2answers
102 views
Silverlight: Can an event from one usercontrol begin an animation on a different usercontrol and/or the containing control
I have three UserControls in Silverlight.
UCOutside contains two UserControls called UCInside1 and UCInside2.
Containing UserControl
<!-- UCOutside -->
<UserControl.Resources>
...
3
votes
1answer
403 views
Programmatic state changes not working in Silverlight
I'm trying to get states to change with the visual state manager through code.
I am using:
Microsoft.Expression.Interactivity.Core.ExtendedVisualStateManager.GoToElementState(this.LayoutRoot, ...
3
votes
1answer
1k views
VisualStateManager and generated transitions
Just when I think I understand the VisualStateManager, something proves me wrong.
I'm using WPF 4 and am trying to simply enlarge an item on mouse over, and shrink it back on mouse leave. I figured ...
3
votes
2answers
365 views
VisualState inheritence in Silverlight
I'm writing a control that inherits from a RadioButton and doesn't do anything more spectacular than display an image and hide the default circle.
One thing I haven't been able to find out about is ...
3
votes
3answers
854 views
How can I use VisualStateManager to change the text color (foreground) of a ListBoxItem?
Here's the deal. I can create a ListBox and style it. I can edit a copy of the template such that the States become available in Expression Blend 3. And I can change the state so that the background ...
2
votes
1answer
32 views
Silverlight WPF VisualStateManager vs MultiDataTrigger
In Silverlight is it always best to use the VisualStateManager when changing the template of of a control like a button?
Or is there support for triggers like Data Triggers in Silverlight?
Im just ...
2
votes
2answers
65 views
Separate event in control
I'm wondering if I can have a individual component in a control have an event. For example, I've created my own control, and with VisualStateManager I'm able to handle several events that fire for the ...
2
votes
2answers
107 views
Start a VisualState transition from XAML
In a user control (or whatever), we all know that the VisualStateManger can be used in code to start a transition, or animation, like so:
if (target.IsLocked)
{
...
2
votes
1answer
225 views
Setting multiple visual states in one go?
I have four visual states defined each affecting different child controls within the same silver-light control.
Is it possible for me to create other visual states which invoke a combination of these ...
2
votes
1answer
414 views
How to add new Visual States to a Custom control template dynamically in code?
Is it possible to add a new VisualState to a CustomControl Template's VisualStateManager programmatically in code?
For example, I can add to a CustomControl Template this XAML manually in ...
2
votes
2answers
172 views
silverlight Best practices when to use visual States versus storyboards
From what I have seen so far, it seems that you can use both visual states and storyboards to do the same thing visually to a silverlight application's UI. Am I wrong in making that statement?
Does ...
2
votes
3answers
3k views
Visual State Manager in WPF not working for me
In a wpf project I have this XAML code
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
...
2
votes
2answers
888 views
WPF - Manipulating VisualState from an UserControl
I have two Visual States defined in my MainWindow's LayoutRoot Grid as following:
<Grid x:Name="LayoutRoot" Background="#FF434343" ShowGridLines="True">
<Grid.RowDefinitions>
...
2
votes
2answers
370 views
Silverlight VisualStateManager
Is it possible to have nested visual states. What I mean is if a ParentControl has a ChildControl and both have their own visual states, is it possible by setting the state of the ParentControl to ...
2
votes
1answer
202 views
Styling Visual States
I am using the VisualStateManager from the WPF Toolkit. I've created a custom control, part of a reusable controls library, with numerous visual states. Now I want to allow the client of my library ...
2
votes
1answer
4k views
Silverlight: Switching VisualStates of CustomVisualStateManager in code-behind
i've been trying to deal with the following problem:
When creating a custom animations for different visual states in Expression Blend 3, which change size/opacity of multiple elements on the grid, ...
1
vote
1answer
45 views
VisualStateManager present both in WPF Toolkit and PresentationFramework - How to resolve
I have to use VisualStateManager class in my WPF window, but as I have referenced the assemblies of both WPF Toolkit and PresentationFramework.dll in my project, C# is not able to resolve the ...
1
vote
1answer
26 views
How to test VisualStateManager states?
How do I check the current states of a control? VisualStateManager allows me to set it from the control itself, but I can't see any way of reading it back?
1
vote
2answers
97 views
Is there a way to set a delay for VisualState transition?
I'd like for my control to start visual state transition animation after some delay.
I tried setting BeginTime on a visual state Storyboard. But it gave nothing :(
Is there any way to do this?
...
1
vote
1answer
197 views
it's posible to animate DataGrid column collapsing in Silverlight/WPF?
i have a simple DataGrid in Silverlight with this columns templates:
<data:DataGrid AutoGenerateColumns="False" ...>
<data:DataGridTextColumn x:Name="idCol" Header="Id" ...
1
vote
3answers
119 views
Set custom attached property on StoryBoard
I have a storyboard and would like to set the attached property VisualStateUtility.InitialState. I've tried various combinations, but the property never gets resolved.
I get the following error: ...
1
vote
1answer
87 views
Fatal Runtime Error in WPF when switching between visual states
I keep having this error sometimes in a particular case. It happens precisely when I am switching from a visual state to another. I assume it comes from a bad property animation but I wonder what are ...
1
vote
2answers
232 views
In XAML, What is the correct XML namespace for VisualStateManager?
I'm trying to restyle a few ToggleButtons. Apparently I cannot simply set the background to a new color, because there is a "Control Template" that provides the ToggleButton's visual behavior.
So ...
1
vote
1answer
216 views
VisualStateManager fails to start animation on UserControl
I'm trying to start a animation on a UserControl using the VisualStateManager in a Windows Phone 7 Silverlight project but it won't work. GoToState just keep returning false.
The code consists of a ...
1
vote
1answer
119 views
WPF VisualStateManger - How to rewind a Storyboard or go back to previous State?
The title describes it at best. I want to switch back to a default state after a specific State is completed. I tried this by using an EventTrigger for the Completed event of the Storyboard, but that ...
1
vote
1answer
319 views
WPF GoToStateAction isn't firing when using a DataTrigger
Please consider the following piece of code:
<Window>
<Window.Tag>
<Button x:Name="myButton"/>
</Window.Tag>
<Grid>
...
1
vote
1answer
343 views
Silverlight Bind VisualState to different Targets
I'm using the following border style:
<!-- Border Style -->
<Style TargetType="Border">
<Setter Property="Background">
<Setter.Value>
...
1
vote
1answer
204 views
VisualStateManager: How to make the 'current' color lighter in MouseOver?
1) Imagine a DataGridColumnHeader control is meant to be in Green color by default.
2) If I click on it, it would activate the Sorting to "Sorted Ascending", this is when it should become Orange. ...
1
vote
0answers
277 views
Change Visual State and use transitions or not based on Dependency Property
I have one control, that I sometimes want to animate a state transition and sometimes I don't.
At the moment I have something like so:
<Grid>
<Interactivity:Interaction.Behaviors>
...
1
vote
3answers
247 views
Define VisualStates from Codebehind
is it possible to define (not switch) VisualStates in CodeBehind?
I'm creating an Adorner, that draws some rectangles in OnRender. What I'd like to do is to change the Opacity of these Rectangles by ...
1
vote
1answer
286 views
Best Practice Trigger Alternatives in Silverlight
MSDN discourages the use of EventTrigger's and really any custom trigger actions but have offered StoryBoard's and the VisualStateManager as alternatives.
Q1. Why are triggers being discouraged when ...
1
vote
1answer
1k views
Silverlight ToggleButton with images
I am trying to create a Silverlight Toggle button style that would flip between a plus and a minus sign. Unfortunately it is always showing a minus sign. Can anyone tell me what's the problem with ...
1
vote
1answer
454 views
WPF using VisualStateManager to animate panels in & out
I'm hoping what I'm trying to do is possible using Visual States...
What I want to do is have a button that toggles a stackPanel between two states: 'In' and 'Out'. I would then call ...
1
vote
1answer
502 views
Silverlight: use GradientBrush resource for state animation
I have a set of controls (Button, ToggleButton) I want to have the same style, so I have created a few gradient brushes for normal/disabled/enabled states in my ResourceDictionary, e.g. ...
1
vote
1answer
364 views
Silverlight 4: ExtendedVisualStateManager error when transitioning
So I have a control with 3 states each state toggles control visibility, and this is animated using FluidLayout. This works in blend when previewing the transitions, but when I go from the first ...
1
vote
2answers
59 views
Silverlight data affecting look .. VisualStateManger .. color according to data value
In Silverlight how do I get the color of a button to change according to the value of its contents .. e.g. '0' = red , '1' = green ..
I have taken a look at the VisualStateManger but cannot see how ...
1
vote
1answer
795 views
Changing VisualState of a control by binding it with some property of ViewModel
Considering the code below:
xmlns:interactivity="clr-namespace:Microsoft.Expression.Interactivity;assembly=Microsoft.Expression.Interactivity"
...
<ToggleButton IsChecked="{Binding ...
1
vote
2answers
313 views
VisualStateManager does nothing (silverlight)
I am building a custom control using studio 2010 and silverlight 4.
I am trying to use the visual state manager.
With the following xml:
<ResourceDictionary
...
1
vote
1answer
191 views
Animating same property from mutually exclusive VisualStateGroups
My question is simply: is it even possible?
Suppose I want to style a ListBoxItem such that it has a black foreground by default, blue when selected, and red when the mouse is over it. I ended up ...
1
vote
0answers
255 views
GoToState not working on controltemplated usercontrol based on combobox
I'm trying to create a custom combobox that shows a loading animation when a bool property is set on it (e.g. IsLoading).
I've created a control template in Blend based on the combobox, and added a ...
1
vote
0answers
129 views
changing tooltip based on state in silverlight
I wanted to be able to change the tooltip on checked and unchecked through the visualstatemanager, this is what i got so far but it doesn't work:
<VisualState x:Name="Checked">
...
1
vote
1answer
118 views
Best way to propagate VisualState changes
I am currently facing a scenario that I am unsure what is the best way to handle.
Scenario:
ControlA has 2 two custom visualstates, let’s call them “StateOn” and “StateOff”.
I now apply a template ...
1
vote
2answers
173 views
How can I control the SpeedRatio of a Storyboard inside a VisualState?
Given a Storyboard started by the VisualStateManager as part of a ControlTemplate, how would I adjust the SpeedRatio of that animation based on property changes of the control?
...