Categories: Blog

Sharing Views in Universal Apps

My previous two blog posts presented a pair of universal apps named Contoso Cookbook and MyComix Reader. Universal apps are apps that run on Windows and Windows Phone and, in the future, on other devices such as Xbox Ones. When you create a universal app in Visual Studio, the resulting solution contains three projects: a Windows project, a Windows Phone project, and a shared project containing code and resources shared by the other two projects. Typically, the shared project holds source-code files containing components used in the other projects, images and other shared assets, and a shared App.xaml file (along with App.xaml.cs). The XAML files representing views (as well as the code-behind files accompanying the XAML files) are typically local to the Windows and Windows Phone project, enabling you to skin the app differently for different form factors.

Can XAML files representing views be placed in the shared project so they can be used on Windows and Windows Phone? Of course! Sometimes it makes a lot of sense to use the same view in both projects, especially if the UX presented on each platform doesn’t rely on controls that are unique to the platform. Case in point: the Unilife app pictured below. It’s a Windows/Windows Phone adaptation of John Conway’s game of life, in which you draw patterns of cells and then evolve those cells from one generation to the next using a simple set of genetic rules. A cell dies if it has too many or too few neighbors, and a dead comes alive in the next generation if it has just the right number of neighbors. The same logic drives both versions of the app. And the same XAML file, located in the shared project, defines the UX for both the Windows version and the Windows Phone version.

 

 

You can download a zip file containing the solution from my OneDrive. Open the solution in Visual Studio 2013 (you’ll need to install Update 2 if you haven’t already) and you’ll see that the app’s one page, MainPage.xaml, is located in the shared project, and that the Windows and Windows Phone projects contain no XAML:

 

 

MainPage.xaml includes little more than an empty Grid and a CommandBar:

 

  1. <Grid x:Name="CellGrid" Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
  2.  
  3. </Grid>
  4.  
  5. <Page.BottomAppBar>
  6.     <CommandBar x:Name="MainAppBar">
  7.         <AppBarButton x:Name="StartButton" Icon="Play" Label="Start" Click="StartSimulation" />
  8.         <AppBarButton x:Name="StopButton" Icon="Pause" Label="Stop" Click="StopSimulation" IsEnabled="False" />
  9.         <AppBarButton x:Name="StepButton" Icon="Next" Label="Step" Click="StepSimulation" />
  10.         <AppBarButton x:Name="ClearButton" Icon="Delete" Label="Clear" Click="ClearCellGrid" />
  11.     </CommandBar>
  12. </Page.BottomAppBar>

 

At run-time, code in MainPage.xaml.cs measures the available screen space by reading the Grid’s ActualWidth and ActualHeight properties and programmatically adds rows and columns to the Grid. Then it creates XAML Rectangles representing cells – one per Grid cell – and inserts them into the Grid:

 

  1. // Measure the available screen space
  2. var width = CellGrid.ActualWidth;
  3. var height = CellGrid.ActualHeight;
  4.  
  5. // Compute number of rows and columns
  6. _cols = (int)(width / (_cellWidth + 2 * _margin));
  7. _rows = (int)(height / (_cellHeight + 2 * _margin));
  8.  
  9. // Add rows and columns to the LayoutRoot Grid
  10. for (int i = 0; i < _cols; i++)
  11.     CellGrid.ColumnDefinitions.Add(new ColumnDefinition());
  12.  
  13. for (int j = 0; j < _rows; j++)
  14.     CellGrid.RowDefinitions.Add(new RowDefinition());
  15.  
  16. // Fill the Grid cells with Rectangles
  17. Brush fill = new SolidColorBrush(Colors.Blue);
  18.  
  19. for (int i = 0; i < _cols; i++)
  20. {
  21.     for (int j = 0; j < _rows; j++)
  22.     {
  23.         Rectangle rect = new Rectangle();
  24.         rect.Margin = new Thickness(_margin);
  25.         rect.Fill = fill;
  26.         rect.Opacity = _opacity;
  27.         rect.RadiusX = rect.RadiusY = 4.0;
  28.         rect.SetValue(Grid.RowProperty, j);
  29.         rect.SetValue(Grid.ColumnProperty, i);
  30.         rect.PointerPressed += OnPointerPressed;
  31.         rect.PointerEntered += OnPointerEntered;
  32.         rect.Tag = ((j + (_extraRows / 2)) * (_cols + _extraCols)) + i + (_extraCols / 2);
  33.         CellGrid.Children.Add(rect);
  34.     }
  35. }

 

The result? You get a cell grid in which the number of rows and columns depends on the amount of screen real estate available. In other words, the UX adapts to the screen size and you get a decent-looking presentation on any device with any form factor.

MainPage.xaml.cs also contains shared process-lifetime management (PLM) code that restores the app to its previous state if the user switches away from it and the app is terminated while suspended. The Suspending event handler instantiates a class named PLMSettings, initializes it with app state, serializes it, and writes it to a file in LocalFolder. On startup, OnNavigatedTo deserializes the data if present and uses it to the restore the app’s state. The fact that the exact same code works identically on Windows and Windows Phone is a testament to the high degree of compatibility between the Windows Runtime (WinRT) and the Windows Phone Runtime (WinPRT).

If you haven’t taken the time to learn WinRT, now’s the time to do it because it’s the backbone of universal apps and the future of the Windows platform. Two resources you might find helpful are books written by colleagues of mine: Windows Runtime via C# by Jeffrey Richter and Maarten van de Bospoort, and the soon-to-be-published Programming the Windows Runtime by Example by Jeremy Likness and John Garland. You might also benefit from watching my video entitled Introduction to WinRT on WintellectNOW. If you’re not a WintellectNOW subscriber, sign up and enter the promo code JEFFPRO-2014 to enjoy two weeks of access for free.

Jeff Prosise

Recent Posts

How to Navigate Azure Governance

 Cloud management is difficult to do manually, especially if you work with multiple cloud…

7 days ago

Why Azure’s Scalability is Your Key to Business Growth & Efficiency

Azure’s scalable infrastructure is often cited as one of the primary reasons why it's the…

3 weeks ago

Unlocking the Power of AI in your Software Development Life Cycle (SDLC)

https://www.youtube.com/watch?v=wDzCN0d8SeA Watch our "Unlocking the Power of AI in your Software Development Life Cycle (SDLC)"…

1 month ago

The Role of FinOps in Accelerating Business Innovation

FinOps is a strategic approach to managing cloud costs. It combines financial management best practices…

1 month ago

Azure Kubernetes Security Best Practices

Using Kubernetes with Azure combines the power of Kubernetes container orchestration and the cloud capabilities…

2 months ago

Mastering Compliance: The Definitive Guide to Managed Compliance Services

In the intricate landscape of modern business, compliance is both a cornerstone of operational integrity…

2 months ago