Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~79 People Reached
Favorite Forums
Member Avatar for Giridhaar

I have been following this tutorial (http://www.codeproject.com/Articles/18379/WPF-Tutorial-Part-Writing-a-custom-animation-cla) to try and adjust the Width of one of my Grids upon a Button click. <Grid Grid.Row="2"> <Grid.ColumnDefinitions> <ColumnDefinition Name="leftGrid" Width="7*"/> <ColumnDefinition Name="rightGrid" Width="3*"/> </Grid.ColumnDefinitions> <i:Interaction.Triggers> <ei:PropertyChangedTrigger Binding="{Binding State}"> <ei:GoToStateAction StateName="{Binding State}" /> </ei:PropertyChangedTrigger> </i:Interaction.Triggers> <VisualStateManager.VisualStateGroups > <VisualStateGroup x:Name="VisualStateGroup"> <VisualState x:Name="Expanded"> <Storyboard> <local:GridLengthAnimation …

0
79