WPF and VSM - List of States?
vsm, wpf, wpftoolkit
Solution
Have a look at Karen Corby's last post on Parts & States Model with VisualStateManager (see point 4). She lists two 'special' state groups that are implemented on the base controls for Silverlight:
(source: scorbs.com)
I believe that WPF kept this organization and naming convention for compatibility with Silverlight, where VSM was first implemented.
Problem
I'm using VSM (Visual State Manager, from the WPF Toolkit) in WPF and I'm trying to find a list of States. Basically, I understand that there are certain "magic" states - like the MouseOver state is automatically applied when the control is moused over, or the Focused state that is applied when ... focused. Is there a list of these somewhere? I'm sure there is, I just can't find it.