Part 0: Intro
Part I: Quick sharing of code
Part II: The class library approach
Part III: We need a pattern
Part IV: Mocking out the differences
Part V: Event to command
Part VI: Behaviors for coping with orientation changes
Part VII: Tombstoning
In the last post we looked at an EventToCommand implementation to easily databind our events to commands, even when we don't have a Command property on a control.
In this post, I will run you through another trick, to ease the development of your views.
One of the behaviors you will probably want in your application is the ability to react to orientation changes. You can easily do this by creating an event handler for the OrientationChanged event in the code behind of your page. You will have to do this in every page you want to be able to react to orientation changes. Resulting in copies of the same piece of code all over the place.
But there is actually a more elegant way of dealing with this, and it is based on behaviors. What you can do is write a specific behavior that does nothing more than attach an event handler to the OrientationChanged event of the associated page. Based on the name of the new orientation, you can now load a specific state of you VisualStateManager.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class OrientationChangedBehavior : Behavior<PhoneApplicationPage> | |
{ | |
protected override void OnAttached() | |
{ | |
base.OnAttached(); | |
AssociatedObject.OrientationChanged += MainOrientationChanged; | |
SetState(AssociatedObject.Orientation); | |
} | |
private void SetState(PageOrientation orientation) | |
{ | |
var orientationName = orientation.ToString(); | |
if (orientationName.StartsWith("Portrait")) | |
VisualStateManager.GoToState(AssociatedObject, "Portrait", true); | |
else if (orientationName.StartsWith("Landscape")) | |
VisualStateManager.GoToState(AssociatedObject, "Landscape", true); | |
else | |
VisualStateManager.GoToState(AssociatedObject, orientation.ToString(), true); | |
} | |
private void MainOrientationChanged(object sender, OrientationChangedEventArgs e) | |
{ | |
SetState(e.Orientation); | |
} | |
} |
Of course, in XAML, you now have to create the necessary VisualStateGroups for the specific orientations.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<VisualStateManager.VisualStateGroups> | |
<VisualStateGroup> | |
<VisualState x:Name="Portrait"> | |
<Storyboard> | |
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="MainTitle" Storyboard.TargetProperty="(FrameworkElement.Visibility)"> | |
<DiscreteObjectKeyFrame KeyTime="0" Value="Visible" /> | |
</ObjectAnimationUsingKeyFrames> | |
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="SubTitle" Storyboard.TargetProperty="(FrameworkElement.Visibility)"> | |
<DiscreteObjectKeyFrame KeyTime="0" Value="Visible" /> | |
</ObjectAnimationUsingKeyFrames> | |
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="AdControl" Storyboard.TargetProperty="(FrameworkElement.Visibility)"> | |
<DiscreteObjectKeyFrame KeyTime="0" Value="Visible" /> | |
</ObjectAnimationUsingKeyFrames> | |
</Storyboard> | |
</VisualState> | |
<VisualState x:Name="Landscape"> | |
<Storyboard> | |
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="MainTitle" Storyboard.TargetProperty="(FrameworkElement.Visibility)"> | |
<DiscreteObjectKeyFrame KeyTime="0" Value="Collapsed" /> | |
</ObjectAnimationUsingKeyFrames> | |
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="SubTitle" Storyboard.TargetProperty="(FrameworkElement.Visibility)"> | |
<DiscreteObjectKeyFrame KeyTime="0" Value="Collapsed" /> | |
</ObjectAnimationUsingKeyFrames> | |
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="AdControl" Storyboard.TargetProperty="(FrameworkElement.Visibility)"> | |
<DiscreteObjectKeyFrame KeyTime="0" Value="Collapsed" /> | |
</ObjectAnimationUsingKeyFrames> | |
</Storyboard> | |
</VisualState> | |
</VisualStateGroup> | |
</VisualStateManager.VisualStateGroups> |
The only thing missing still is a small extra piece of XAML to make use of the OrientationChangedBehavior.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<i:Interaction.Behaviors> | |
<framework:OrientationChangedBehavior /> | |
</i:Interaction.Behaviors> |
That's it, small and simple little trick. In the next part we'll look at the troubles you can have when your application needs to be tombstoned.
Other parts in this series:
Part 0: Intro
Part I: Quick sharing of code
Part II: The class library approach
Part III: We need a pattern
Part IV: Mocking out the differences
Part V: Event to command
Part VI: Behaviors for coping with orientation changes
Part VII: Tombstoning
No comments:
Post a Comment