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 design-time:
<VisualState x:Name="First">
<Storyboard>
<ColorAnimation Duration="0:0:0"
Storyboard.TargetName="SBorder"
Storyboard.TargetProperty="(Background).(SolidColorBrush.Color)" To="Red" />
</Storyboard>
</VisualState>
But how could I add a new VisualState
in runtime?
I think this is doable, but by no means easy...
this should work:
(you'll need to adapt depending on the type of your template's root element's name, and the place where you set-up the visualstatemanager, but all in all this can work.
also, this adds a new visualStateGroup, not just a visualState. If you want to add a VisualState to an existing visualStateGroup, you'll have to get the group from the collection first, but this is common "get element from a collection" stuff
basically:
VisualStateManager.GetVisualStateGroups()
static method to get the current visualStateGroupshope this helps.