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 be identified by this style. Now I want to adapt the style of the input controls when the app transforms into the Snapped View State, which is represented by a Visual State in my XAML.
Is it possible to declare a new style for all those (dynamic) input controls in the Snapped Visual State of the XAML markup? Or do I have to perform this layouting in code behind? As I've seen, there is a Storyboard.TargetName property in the Visual State's Storyboard/ObjectAnimationUsingKeyFrames tag, but this only allows a concrete control id/name.