I have one popup. In that popup i have three steps. All data for that three steps are in one XAML page in three different grids . i want to move that three grid one by one on click of Next button with anymation. How can i do it with silverlight 3.0
views:
174answers:
1
A:
In your button handlers, expand and collapse the named grids using the Visibility property of each.
Page One: GridOne's Visibility="Visible", the other grids are collapsed. In the button handler, set the Visibility to Collapsed, and Visible to GridTwo.
Jeff Wilcox
2009-08-05 20:36:15