1

Flex has a very elegant concept of states which let you define what components should be displayed and what should they look like based on the parent component "state".
For example, you could define some Login window states as "Normal","ChangePassword","Sending" or "Failed" and adjust the layout accordingly.

What is the equivalent concept in WPF?

MonoThreaded
  • 11,429
  • 12
  • 71
  • 102

1 Answers1

2

WPF has visual states concept. See VisualState and VisualStateManager classes.

Dennis
  • 37,026
  • 10
  • 82
  • 150