Developer tasks for building a Windows Store business app using C#, XAML, and Prism

[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]

From: Developing a Windows Store business app using C#, XAML, and Prism for the Windows Runtime

Previous page | Next page

Learn about the key developer tasks that you will need to perform when developing a Windows Store business app. Included are tasks for pages, touch, validation, application data, tiles, search, performance, testing, extended splash screens, incremental loading, and the Prism libraries.

Download

After you download the code, see Getting started using Prism for the Windows Runtime for instructions on how to compile and run the reference implementation, as well as understand the Microsoft Visual Studio solution structure.

Applies to

  • Windows Runtime for Windows 8.1
  • C#
  • Extensible Application Markup Language (XAML)

Windows Store business app developer tasks

This article provides lists to help you accomplish different tasks when developing Windows Store business apps. The goal is to lessen the time it takes you to perform a developer task. While many of the tasks link to content that discusses how to use Prism to solve the problem, this is not always the case. In addition, the task lists are not meant to provide you with detailed steps required to complete a task. If you require more info, the content that is linked to includes links to other relevant documentation.

Guidance summary and checklists for Windows Store business apps

When developing a Windows Store business app you will need to make some key decisions that will define the architecture of your app. The documentation includes guidance on:

[Top]

Using Prism for the Windows Runtime

Prism for the Windows Runtime provides two libraries that help developers create Windows Store apps using C#. The libraries accelerate development by providing support for bootstrapping MVVM apps, state management, validation of user input, navigation, event aggregation, data binding, commands, and settings. The libraries can be used separately or together.

Using the Model-View-ViewModel (MVVM) pattern

The MVVM pattern lends itself naturally to Windows Store apps that use XAML. The documentation includes guidance on:

Navigating between pages

Navigation within a Windows Store app can result from the user's interaction with the UI or from the app itself as a result of internal logic-driven state changes. The documentation includes guidance on:

Validating user input

Any app that accepts input from users should ensure that the data is valid. An app could, for example, check that the input contains only characters in a particular range, is of a certain length, or matches a particular format. Validation can be synchronous or asynchronous, and without it a user can supply data that causes the app to fail. Validation enforces business rules, and prevents an attacker from injecting malicious data. The documentation includes guidance on:

Managing application data

Application data is data that an app creates and manages. The documentation includes guidance on:

Handling suspend, resume, and activation

Windows Store apps should be designed to save their state and suspend when the user switches away from them. They should restore their state and resume when the user switches back to them. The documentation includes guidance on:

Communicating between loosely coupled components

Event aggregation is a design pattern that enables communication between classes that are inconvenient to link by object and type references. This mechanism allows publishers and subscribers to communicate without having a reference to each other. The documentation includes guidance on:

[Top]

Designing the user experience

Good Windows Store apps share an important set of traits that provide a consistent, elegant, and compelling user experience. Planning ahead for different form factors, accessibility, monetization, and selling in the global market can reduce your development time and make it easier to create a high quality app and get it certified. The documentation includes guidance on:

[Top]

Creating pages

Windows Store app pages need to support a fluid layout such as landscape, portrait, and minimal view states to be responsive to user resizing requests and support for running on multiple devices. The user can change the screen size, orientation, and even input method and the app needs to respond to these requests. The app also needs to provide navigation between pages, accessibility, and optionally localization. The documentation includes guidance on:

[Top]

Using touch

Microsoft Windows provides a concise set of touch interactions that are used throughout the system. Applying this language consistently makes your app feel familiar to what users already know, increasing user confidence by making your app easier to learn and use. The documentation includes guidance on:

[Top]

Managing application data

Application data is data that an app creates and manages. It is specific to the internal functions or configuration of the app, and includes runtime state, user preferences, reference content, and other settings. Application data is created, read, updated, deleted, and cached when an app is running. The documentation includes guidance on:

[Top]

Working with tiles

A tile is an app's representation on the Start screen and allows you to present rich and engaging content to your users when the app is not running. Tiles should be appealing to users in order to give them great first-impression of your Windows Store app. The documentation includes guidance on:

[Top]

You should use the SearchBox control to let users search for content in your app, in order to ensure that they have a consistent and predictable experience when they search. Regardless of where your app’s content is located, you can use the search box to respond to user’s queries and display search results in an app page of your own design. The documentation includes guidance on:

[Top]

Improving performance

Users of Windows Store apps expect their apps to remain responsive and feel natural when they use them. The documentation includes guidance on:

[Top]

Testing and deploying apps

Testing helps to ensure that an app is robust, reliable, and of high quality. The documentation includes guidance on:

[Top]

Extended splash screen Quickstart

An extended splash screen is a splash screen that stays on the screen for an extended period of time. Extended splash screens should be displayed when an app needs more time to prepare its initial UI. The documentation includes guidance on:

[Top]

Incremental loading Quickstart

Incremental loading enables an item template in a GridView or ListView to render its controls in phases, thereby creating a more responsive and useful UI when the user scrolls through large data sets. The documentation includes guidance on:

[Top]