Part 3: Navigation, layout, and views

[ This article is for Windows 8.x and Windows Phone 8.x developers writing Windows Runtime apps. If you’re developing for Windows 10, see the latest documentation ]

The UI design for your Windows Store app is about organizing and presenting content to your users, and providing commands that enable your users to act on the content. UI design includes the organization of pages in the app, the navigation between pages, and the layout of content and commands on each page.

There are various navigation patterns that can be used in a Windows Store app. Navigation patterns will help you choose the best navigation pattern for your app.

Note  

See the two primary navigation patterns (Flat navigation and Hierarchical navigation) in action as part of our App features, start to finish series.

 

Important  This tutorial is intended for use with Microsoft Visual Studio 2013 and Windows 8.1. Parts of it will not work correctly with Microsoft Visual Studio 2012 and Windows 8.

 

In this tutorial, you learn how to:

  • Add pages and navigation
  • Arrange controls and content on a page
  • Adapt the page layout to different orientations and views

Before you start...

Step 1: Add pages and navigation

In this tutorial, we go over the basics of creating a user interface in Extensible Application Markup Language (XAML). To learn these basics, you create a simple photo viewer that lets the user pick an image from their Pictures, and then it shows the image and some info about the image file. For the photo viewer, you add a new page to the "Hello, world" app from Part 2. To use the new page, you add commands to navigate between the pages.

The first thing you need to do is add a new page to your app for the photo viewer. Then you add a navigation command to the main page so that the user can navigate to the new page.

Add the photo viewer page

We start here with the code from Part 2: Manage app lifecycle and state.

To add a page to an app

  1. Select Project > Add New Item. The Add New Item dialog box opens.

    Tip  Make sure the project, and not the solution, is selected in Solution Explorer.

     

  2. Under Visual C# or Visual Basic in the left pane, pick the Windows Store template type.

  3. In the center pane, pick Basic Page.

  4. Enter "PhotoPage.xaml" as the name for the page.

  5. Click Add. The XAML and code behind files for your page are added to the project.

    Here's the Add New Item dialog.

    (The first time you add a new page to the Blank App template (other than a Blank Page), Microsoft Visual Studio shows a dialog with a message that you need to add files that are missing from your project. You added these files in Part 1, so you should not see this warning. If you do, click Yes to add these files. Files for several utility classes are added to your project in the Common folder.)

  6. To change the page title, select the "My Application" text near the top of PhotoPage.xaml.

    Make sure the TextBlock named pageTitle is showing in the Properties panel and the Properties view () is selected.

  7. Under Common in the Properties panel, click the property marker for the Text property. The property menu opens.

    Note  The property marker is the small box symbol to the right of each property value. The Text property marker is green to indicate that it's set to a resource.

     

  8. In the property menu, select Edit Resource. The Edit Resource dialog opens.

  9. In the Edit Resource dialog, change the value from "My Application" to "Hello, photo!".

  10. Click OK.

    The XAML for the resource definition is updated like this.

    <x:String x:Key="AppName">Hello, photo!</x:String>
    

Add navigation

The XAML UI framework provides a built-in navigation model that uses Frames and Pages and works much like the navigation in a web browser. The Frame control hosts Pages, and has a navigation history that you can use to go forward and back through pages you've visited. You can also pass data between pages as you navigate.

In Part 1 and Part 2, you saw the code in App.xaml.cs/.vb that creates a Frame and navigates to MainPage when the app is started. Here, you add a command to MainPage to navigate to the new PhotoPage in the same way.

To navigate between pages

  1. In Solution Explorer, double-click MainPage.xaml to open it.

  2. In the XAML editor, find the StackPanel that contains the greetingOutputTextBlock. Immediately after the greetingOutputTextBlock, add a Button element, like this:

    <Button Content="Go to photo page"/>
    

    Here's the button you added with the surrounding XAML.

    <StackPanel Grid.Row="1" Margin="120,30,0,0">
        <TextBlock Text="What's your name?" Style="{ThemeResource BaseTextBlockStyle}"/>
        <StackPanel Orientation="Horizontal" Margin="0,20,0,20">
            <TextBox x:Name="nameInput" Width="300" HorizontalAlignment="Left"
                     TextChanged="NameInput_TextChanged"/>
            <Button Content="Say &quot;Hello&quot;" Click="Button_Click"/>
        </StackPanel>
        <TextBlock x:Name="greetingOutput" Style="{StaticResource BigGreenTextStyle}"/>
        <Button Content="Go to photo page"/>
    </StackPanel>
    
  3. In the XAML editor or design view, select the "Go to photo page" Button that you added to MainPage.xaml.

  4. In the Properties panel, click the Events button ().

  5. Find the Click event at the top of the event list. In the text box for the event, type "PhotoPageButton_Click" as the name of the function that handles the Click event.

  6. Press Enter. The event handler method is created and opened in the code editor so you can add code that's executed when the event occurs.

  7. Add this code to the event handler that you created in the code behind page. In the event handler, navigate to the new photo page that you added to the app.

                // Add this code.
                if (this.Frame != null)
                {
                    this.Frame.Navigate(typeof(PhotoPage));
                }
    
            ' Add this code.
            If Me.Frame IsNot Nothing Then
                Me.Frame.Navigate(GetType(PhotoPage))
            End If
    

    This call to Navigate causes a new PhotoPage to be instantiated. To preserve the state of the photo page, you can enable the navigation cache so the page isn't recreated each time a user navigates.

  8. Switch back to PhotoPage.xaml. In the XAML editor or design view, select the root Page element.

  9. In the Properties panel, click the Properties button ().

  10. Under Common in the Properties panel, click the down arrow to show advanced properties, and change the NavigationCacheMode value to Enabled.

  11. Press F5 to build and run the app. Click the Go to photo page button. The photo page opens. Click the back button to navigate back to the main page.

You don't need to add a back button to the photo page. The photo page is based on the Basic Page template, which has built-in support for navigation. The back button uses the Frame history to go back to the previous page, and is shown only when the Frame.CanGoBack property is true.

Step 2: Add controls and content to a page

Now you add content to the photo page. Before you start working on the layout of the photo page, it's helpful to understand the fundamentals of layout using XAML.

About creating a UI with XAML

The XAML layout system supports both static and fluid layouts.

In a static layout, you give controls explicit pixel sizes and positions. When the user changes the resolution or orientation of their device, the UI doesn't change. Static layouts can become stretched, shrunk, or clipped across different form factors and display sizes.

Fluid layouts shrink, grow, and reflow to adapt to the visual space available on a device. In a fluid layout, the layout containers and the controls are automatically sized and repositioned as the app resizes. In a Windows Store app, you still use static elements and values in some places, but make sure that the overall UI is fluid and adapts to different resolutions, layouts, and views.

Most app content can be organized into some form of groupings or hierarchies. You use layout containers to group and arrange UI elements. The XAML layout system provides various Panel controls, such as Grid, StackPanel, and Canvas, that serve as containers in which you arrange your content. Most containers do some automatic sizing of their child elements if the elements don't have an explicit size set.

You use a Grid to arrange content in rows and columns. You position elements using the Grid.Row and Grid.Columnattached properties. You can make elements span multiple rows and columns by using the Grid.RowSpan and Grid.ColumnSpan attached properties.

You use a StackPanel to arrange content in single line. You can set the Orientation property to stack items either vertically or horizontally.

You use a Canvas when you want to control all aspects of positioning and sizing of content. In a Canvas, you position elements absolutely using Canvas.Top and Canvas.Left attached properties. A canvas doesn't do any sizing of child elements, so you have to size them explicitly.

To control the size and position of an element, you set its layout properties. Here are some common layout properties and their effect.

  • HorizontalAlignment and VerticalAlignment: Specifies what position an object takes in relation to its parent object.
  • Margin: Specifies the amount of empty space around the control, between the outside of the child object and the boundaries of the panel.
  • Width and Height: Specifies fixed values measured in pixels.
  • MinWidth/MaxWidth and MinHeight/MaxHeight: Specifies values that constrain the size of an element while allowing fluid resizing.

You use these containers and layout properties to create a fluid layout for the photo viewer page.

XAML layout tools

In Part 1, you added controls to the main page by entering XAML directly into the XAML editor. But Visual Studio also includes a visual XAML designer that you can use to add and arrange controls. For the rest of this tutorial, you use the XAML designer to create the UI. Before we start, let's take a look at the parts of Visual Studio UI that you use, and how to complete some common tasks.

Here are the main parts of Visual Studio that you use:

Panel Image Description
Solution Explorer Use to manage files in your project.
  • Double-click a file to open it. If the file is already open, it's made the active document.
Properties Use to view and edit properties of the selected item.
  • By default, properties are grouped by category. Expand a category to see its properties.
  • Show advanced properties by clicking the down arrow at the bottom of a category.
XAML Designer Use to add and arrange elements of the app UI.
  • Common interactions are drag -and-drop to arrange items, and click to select an item.
XAML editor Use to directly edit XAML.
Toolbox Use to add controls and other items to your app UI.
  • Drag controls onto the surface of the designer.
Device Use to simulate different settings of a physical device in the designer.
  • Click the view buttons to simulate different app views in the designer.
  • Change the Display settings to simulate different resolutions in the designer.
Document Outline Use to select and arrange UI elements in a hierarchical view.
  • Click an item to select it.
  • Click an arrow to expand an item and see its child elements.
  • Use Ctrl+Click to select multiple non-contiguous items.
  • Use Shift+Click to select multiple contiguous items.
  • Drag-and-drop items to rearrange them.

 

We assume that you're using the default window layout in Visual Studio. If you change the default layout, you can reset it in the Window menu by picking the Reset Window Layout command.

There are some common tasks that you repeat often while creating a UI. Knowing how to complete these tasks before we start will make creating the UI easier.

To open a file

  • Double-click the file name in Solution Explorer. If the file is already open, it is made active in the designer and XAML editor.

By default, the Toolbox, Device, and Document Outline panels are collapsed to the left of the designer.

To open the Toolbox, Device, or Document Outline panels

  1. Open any of the panels by clicking the name of the panel you want to open.
  2. To keep the panel open, click the Auto Hide (pin) icon in the panel header.
    Tip  If the Toolbox covers a part of the XAML designer where you need to drop a control, pin the Toolbox open.
     

Here are various ways you can select an item and make it active. In some situations, one way might be easier than others. In that case, we will suggest the easiest way to select the item.

To select an item

  1. In the Document Outline, click the element or the element name if it has a name.
  2. In the XAML editor, click the opening tag for the element.
  3. In the XAML designer, do one of these:
    • Move your mouse cursor over the item until a blue highlight appears around it. Click the highlighted item to make it active.
    • Right-click an object in the designer. In the context menu, open the Set Current Selection sub-menu and pick the item to make active.
  4. Check the Properties panel to ensure the correct element is active.

The Properties panel has views for managing both properties and events.

To switch the Properties panel between Properties and Events views

  • In the Properties panel,
    • click the Events button () to show the Events view.
    • click the Properties button () to show the Properties view.

To reference an element in your code, you must give it a name.

To name a UI element

  1. Select the element to name.
  2. In the Properties panel, type a name into the Name text box.
  3. Press Enter to commit the name.

When you add an element in the designer, the designer sets layout properties to absolutely position and size the element. These properties typically need to be reset to create a fluid layout.

To reset a property

  1. Ensure that the element that has the property is selected, and the Properties panel is showing the Properties view.
  2. In the Properties panel, click the property marker next to the property value. The property menu opens.
  3. In the property menu, click Reset.

To change the alignment of an element

  1. Select the element to align.
  2. Under Layout in the Properties panel, do one of the following:
    • Change the HorizontalAlignment property to one of these:

      Anchors to the left but stretches to the right when resized.
      Always anchored to the horizontal center regardless of resizing.
      Anchors to the right but stretches to the left when resized.
      Stretches in both horizontal directions when resized.

       

    • Change the VerticalAlignment property to one of these:

      Anchors to the bottom but stretches to the top when resized.
      Always anchored to the vertical center regardless of resizing.
      Top
      Anchors to the top but stretches to the bottom when resized.
      Stretches in both vertical directions when resized.

       

To change the margins of an element

  1. Select the element to set margins on.
  2. Under Layout in the Properties panel, set one or more of the Margin values: Left, Right, Top, Bottom.

 

Add navigation commands

In Step 1, you added a Button to navigate from the main page to the new photo page. For convenience, you put the button on the canvas of the main page. But the navigation command is not related to anything else on the main page, and the button seems out of place. When designing your Windows Store app, it's important to consider the placement of commands.

Windows Store apps provide app bars for grouping commands that are hidden by default. The user can show the commands when needed by swiping from the top or bottom edge of the screen, or by right-clicking. The app bar at the top of the screen is typically used for navigation, so you add a top app bar and move the navigation button to it.

To add a top app bar

  1. In Solution Explorer, double-click MainPage.xaml to open it.

  2. In the Document Outline, expand the "pageRoot" element and right-click TopAppBar.

  3. In the context menu, pick Add CommandBar. A CommandBar element is added to the page.

    You can add either an AppBar or a CommandBar to a page. AppBar is more customizable, but requires you to handle more of the layout yourself. CommandBar is less customizable, but handles layout for you. Unless you need the flexibility of AppBar, we recommend using a CommandBar.

A CommandBar can only contain AppBarButton, AppBarToggleButton, and AppBarSeparator elements. To replace the navigation button you added earlier, add an AppBarButton to the CommandBar.

Add an app bar button

  1. In the Document Outline, expand the CommandBar element and right-click PrimaryCommands.

  2. In the context menu, pick Add AppBarButton. An AppBarButton is added to the CommandBar and selected.

  3. Under Icon in the Properties panel, pick "Pictures" from the Symbol drop down.

  4. Under Common in the Properties panel, change the Label value from "AppBarButton" to "Pictures".

  5. In the Properties panel, click the Events button ().

  6. Find the Click event at the top of the event list. In the text box for the event, type PhotoPageButton_Click. You use the same event handler that you created for the navigation button you added earlier.

    Here's the final XAML for the app bar.

    <Page.TopAppBar>
        <CommandBar>
            <AppBarButton Label="Pictures" Icon="Pictures" Click="PhotoPageButton_Click"/>
        </CommandBar>
    </Page.TopAppBar>
    
  7. Select the "Go to photo page" button, and press Delete. You have the app bar button for navigation now, so you don't need this button.

  8. Press F5 to build and run the app. To open the app bar, swipe from the top or bottom edge of the screen, or right-click the app.

You used the app bar to clean up the layout of the main page. Now we turn our attention the new photo viewer page.

Add a layout grid

You start by adding a Grid to divide the content area of the page into 3 rows. The first 2 rows are fixed height, and the last row fills the remaining available space.

To add a Grid panel to a page

  1. Open PhotoPage.xaml.

  2. Drag a Grid from the Toolbox and drop it onto the design surface in the middle of the page.

    The Grid is added to the page, and the designer sets some properties based on its best guess at the layout you want. A blue highlight appears around the Grid to indicate that it is now the active object.

  3. In the Properties panel, enter "contentGrid" as the name of the Grid.

  4. Reset these Grid properties: Width, Height, HorizontalAlignment, VerticalAlignment, and Margin. The Grid now completely fills the content area of the page.

  5. Under Layout, set the left Margin and bottom Margin to "120".

  6. In the designer, dotted lines called grid rails appear along the top and left sides of the Grid. Move your cursor over the left side grid rail. The pointer changes to an arrow with a plus (+) sign, and an orange line shows where a row will be added.

  7. Click anywhere on the left grid rail to add a row.

  8. Repeat the previous step to add another row to the Grid.

    There are now 3 rows in the Grid. When your cursor is over the grid rail, a small flyout appears that you can use to select the sizing options and adjust the row Height property.

  9. Place your cursor over the grid rail in the first row until the flyout appears.

  10. Click the down arrow to open the flyout menu. Select Pixel in the menu.

  11. Place your cursor over the grid rail again until the flyout appears. In the flyout, click the number value.

  12. Type "50" and press Enter to set the Height property to 50 pixels.

  13. Repeat the process in steps 9-12 to set the second row Height to 70 pixels.

    The last row is set to the default value of "1*" (1 star), which means it will use any remaining space.

Now, let's look at the XAML that's produced by this.

<Grid x:Name="contentGrid" Grid.Row="1" Margin="120,0,0,120">
    <Grid.RowDefinitions>
        <RowDefinition Height="50"/>
        <RowDefinition Height="70"/>
        <RowDefinition/>
    </Grid.RowDefinitions>
</Grid>

To define rows in a Grid, you add RowDefinition objects to the Grid.RowDefinitions collection. You can set properties on the RowDefinition to specify what the row will look like. You add columns in the same way, using ColumnDefinition objects and the Grid.ColumnDefinitions collection.

Notice this setting in the opening Grid tag: Grid.Row="1". You position elements in a Grid using the Grid.Row and Grid.Column attached properties. The row and column numbering is zero-based, so this setting indicates that the "contentGrid" panel is added to the second row of it's parent Grid. This property is set by Visual Studio, based on where you drop the Grid when you add it.

Add controls to photo page

Now you add controls to the Grid. You add a Button to get a picture from Pictures, an Image control to show the picture, and some TextBlock controls to show information about the picture file. You use StackPanels in the last grid row to arrange the Image and TextBlock controls.

To add controls to the page

  1. Add the "Get photo" button

    1. In the Document Outline, select the "contentGrid" panel.
    2. With the "contentGrid" panel selected, drag a Button control from the Toolbox and drop it in the first grid row.
    3. In the Properties panel, reset these Button properties: HorizontalAlignment, VerticalAlignment, and Margin.
    4. Set the button's Content property to "Get photo".
  2. Add the image name TextBlock

    1. With the "contentGrid" panel selected, drag a TextBlock control from the Toolbox and drop it in the second grid row.
    2. In the Properties panel, reset these TextBlock properties: HorizontalAlignment, VerticalAlignment, and Margin.
    3. Expand the Miscellaneous group and find the Style property.
    4. In the Style property menu, select System Resource > SubheaderTextBlockStyle.
  3. Add the Image

    1. With the "contentGrid" panel selected, drag a StackPanel from the Toolbox and drop it on the last grid row.

    2. Reset these StackPanel properties: Width, Height, HorizontalAlignment, VerticalAlignment, and Margin.

    3. In the Properties panel, set the StackPanel's Orientation property to Horizontal.

    4. In the Name text box for the StackPanel, type "imagePanel", then press Enter.

    5. With the StackPanel selected, drag a Border control from the Toolbox and drop it in the StackPanel.

    6. Under Brush in the Properties panel, select Background.

    7. Pick the solid color brush tab, then set the color value to "#FF808080".

    8. Repeat steps f-g for the BorderBrush property.

    9. Drag an Image control from the Toolbox and drop it in the Border.

    10. In the Name text box for the Image, type "displayImage", then press Enter.

    11. In the drop-down list for the ImageSource property, select "Logo.png".

    12. In the Document Outline, select the Border that contains the Image.

    13. In the Properties panel, reset the Border's Width property.

  4. Add the image info

    1. Drag a TextBlock control from the Toolbox and drop it in the "imagePanel" StackPanel, to the right of the Image control.

      Here, you don't need to reset any layout properties, unlike when you dropped the TextBlock in the Grid. The StackPanel and Grid handle the sizing of their child elements differently. For more info, see Quickstart: Adding layout controls.

    2. Drag 5 more TextBlock controls into the StackPanel.

      There are now 6 TextBlock controls lined up horizontally to the right of the Image control.

    3. Select the first TextBlock and set its Text property to "File name:".

    4. Select the third TextBlock and set its Text property to "Path:".

    5. Select the fifth TextBlock and set its Text property to "Date created:".

The photo viewer UI looks like this now. The layout is nearly complete, but you still need to fix the appearance of the TextBlocks that show the picture info.

Here's the XAML that's generated for this layout.

<Grid x:Name="contentGrid" Grid.Row="1" Margin="120,0,0,120">
    <Grid.RowDefinitions>
        <RowDefinition Height="50"/>
        <RowDefinition Height="70"/>
        <RowDefinition/>
    </Grid.RowDefinitions>
    <Button Content="Get photo"/>
    <TextBlock Grid.Row="1" TextWrapping="Wrap" Text="TextBlock" 
               Style="{StaticResource PageSubheaderTextStyle}"/>
    <StackPanel x:Name="imagePanel" Grid.Row="2" Orientation="Horizontal">
         <Border BorderBrush="Gray" BorderThickness="7" Background="Gray">
             <Image x:Name="displayImage" Source="Assets/Logo.png"/>
         </Border>
         <TextBlock TextWrapping="Wrap" Text="File name:"/>
         <TextBlock TextWrapping="Wrap" Text="TextBlock"/>
         <TextBlock TextWrapping="Wrap" Text="Path:"/>
         <TextBlock TextWrapping="Wrap" Text="TextBlock"/>
         <TextBlock TextWrapping="Wrap" Text="Date created:"/>
         <TextBlock TextWrapping="Wrap" Text="TextBlock"/>
    </StackPanel>
</Grid>

You need to fix the layout and formatting of the TextBlocks you added. To give the picture info text the layout you want, you group the controls into a vertical StackPanel.

To group items into a StackPanel

  1. In the Document Outline, click the first TextBlock in the "imagePanel" StackPanel.

  2. Press Shift, then click the last TextBlock in the group. The 6 TextBlock controls are now selected.

  3. Right-click the group of selected TextBlock controls. In the context menu, select Group Into > StackPanel.

    A StackPanel is added to the page, and the 6 TextBlock controls are put inside the StackPanel.

  4. Under Layout in the Properties panel, set the StackPanel's Orientation property to Vertical.

  5. Set the StackPanel left Margin to "20".

The last thing to do is to format the picture info text. You use built-in styles for the text, and set some margins to create space between the elements.

To style the text

  1. In the Document Outline, click the first TextBlock in the "imagePanel" StackPanel.
  2. Press Ctrl, then click the third and fifth TextBlock in the group. Three TextBlock controls are now selected.
  3. Under Miscellaneous in the Properties panel, find the Style property.
  4. In the Style property menu, select System Resource > CaptionTextBlockStyle.
  5. Select the second, fourth, and sixth TextBlock controls in the group.
  6. Set the Style property to System Resource > BodyTextBlockStyle.
  7. Set the left Margin property value to 10, and the bottom value to 30.

The XAML for the picture info text now looks like this.

<StackPanel Margin="20,0,0,0">
    <TextBlock TextWrapping="Wrap" Text="File name:" 
               Style="{ThemeResource CaptionTextBlockStyle}"/>
    <TextBlock TextWrapping="Wrap" Text="TextBlock" 
               Style="{ThemeResource BodyTextBlockStyle}" Margin="10,0,0,30"/>
    <TextBlock TextWrapping="Wrap" Text="Path:" 
               Style="{ThemeResource CaptionTextBlockStyle}"/>
    <TextBlock TextWrapping="Wrap" Text="TextBlock" 
               Style="{ThemeResource BodyTextBlockStyle}" Margin="10,0,0,30"/>
    <TextBlock TextWrapping="Wrap" Text="Date created:" 
               Style="{ThemeResource CaptionTextBlockStyle}"/>
    <TextBlock TextWrapping="Wrap" Text="TextBlock" 
               Style="{ThemeResource BodyTextBlockStyle}" Margin="10,0,0,30"/>
</StackPanel>

Press F5 to build and run the app. Navigate to the photo page. It now looks like this.

Step 3: Adapt the page layout to different orientations and views

So far, you've designed the app to be viewed full screen in the landscape orientation. But a new Windows UI must adapt to different orientations and layouts. Specifically, it must support both landscape and portrait orientations. Here, we see how you can make your app look good in any resolution or orientation.

Use different views in Visual Studio

To see what the app looks like in different views, you can use the Device panel in Visual Studio 2013. (The Device panel is available only when a XAML page is active.) This lets you simulate various views, displays, and display options for your app in the Visual Studio designer. Here, you see how to use the Orientation options, but you need to also use the Display options to see how the UI looks at different screen resolutions. A fluid layout adapts to look good on different screens.

Let’s try the portrait orientation to see how the app looks.

To use different views in Visual Studio

  1. In the Device panel, click the portrait () button. The designer changes to simulate the portrait view.

    This is what the app looks like when the user rotates it to portrait orientation. This view is too narrow. You need to make some adjustments to the width of the app UI.

  2. Click the Landscape button to switch back to the default view.

Adjust the portrait view

Now, let's fix the portrait view.

When you change the StackPanel from Horizontal to Vertical, the Border and Image resize automatically. This is an example of fluid layout. The StackPanel lets its child elements stretch in the direction that it's oriented, and constrains them in the opposing orientation. Instead of setting the image to a fixed size, you let the layout panel arrange and size its child elements.

To adjust the portrait view

  1. In the XAML editor, add this block of XAML after the contentGridGrid element.

            <VisualStateManager.VisualStateGroups>
                <VisualStateGroup>
                    <VisualState x:Name="DefaultLayout">
                        <Storyboard>
                        </Storyboard>
                    </VisualState>
    
                    <VisualState x:Name="Portrait">
                        <Storyboard>
                            <ObjectAnimationUsingKeyFrames 
                                Storyboard.TargetProperty="(StackPanel.Orientation)" 
                                Storyboard.TargetName="imagePanel">
                                <DiscreteObjectKeyFrame KeyTime="0">
                                    <DiscreteObjectKeyFrame.Value>
                                        <Orientation>Vertical</Orientation>
                                    </DiscreteObjectKeyFrame.Value>
                                </DiscreteObjectKeyFrame>
                            </ObjectAnimationUsingKeyFrames>
                            <ObjectAnimationUsingKeyFrames 
                                Storyboard.TargetProperty="(FrameworkElement.Margin)" 
                                Storyboard.TargetName="imagePanel">
                                <DiscreteObjectKeyFrame KeyTime="0">
                                    <DiscreteObjectKeyFrame.Value>
                                        <Thickness>0,0,20,0</Thickness>
                                    </DiscreteObjectKeyFrame.Value>
                                </DiscreteObjectKeyFrame>
                            </ObjectAnimationUsingKeyFrames>
                        </Storyboard>
                    </VisualState>
                </VisualStateGroup>
            </VisualStateManager.VisualStateGroups>
    
  2. In the Document Outline, select the "pageRoot" element.

  3. In the Properties panel, click the Events button ().

  4. Find the SizeChanged event in the event list. In the text box for the event, type "PhotoPage_SizeChanged" as the name of the function that handles the SizeChanged event.

  5. Press Enter. The event handler method is created and opened in the code editor so you can add code that's executed when the event occurs.

  6. Add this code to the event handler.

                if (e.NewSize.Height/e.NewSize.Width >= 1)
                {    
                    VisualStateManager.GoToState(this, "Portrait", true);
                }
                else
                {
                    VisualStateManager.GoToState(this, "DefaultLayout", true);
                }
    
            If e.NewSize.Height / e.NewSize.Width >= 1 Then
                VisualStateManager.GoToState(Me, "PortraitLayout", True)
            Else
                VisualStateManager.GoToState(Me, "DefaultLayout", True)
            End If
    

To test the app in different orientations, views, and resolutions, you can use the simulator in Visual Studio. To run your Windows Store app in the simulator, select Simulator from the drop-down list next to the Start Debugging button on the Standard toolbar. For more information about testing the app in the simulator, see Running Windows Store apps from Visual Studio.

The app now looks like this in when you run it in the simulator in portrait orientation.

Summary

Congratulations, you're done with the third tutorial! You learned how to save app data and session state in a Windows Store app.

See the code

Did you get stuck, or do you want to check your work? If so, see Part 3 complete code.

Next steps

In the next part of this tutorial series, you learn how to access and work with files. Go to Part 4: File access and pickers.

For designers

Navigation patterns

Command patterns

Layout

Back button

Guidelines for the hub control

Guidelines for app bars

Making the app bar accessible

For developers (XAML)

Adding app bars (XAML)

Navigating between pages (XAML)

XAML Hub control sample

XAML AppBar control sample

XAML Navigation sample

Windows.UI.Xaml.Controls Hub class

Windows.UI.Xaml.Controls AppBar class

Windows.UI.Xaml.Controls CommandBar class