-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating
Direct3D Rendering Cookbook
Within Windows Store apps, it is desirable to keep your application as responsive as possible at all times. Instead of showing a static splash screen for the duration of compiling shaders and loading resources, in this recipe we will initialize our renderers and resources using the async/await keywords.
For this recipe, we will continue from where we left off in the previous recipe Rendering to an XAML SwapChainPanel.
We will first make changes to the SwapChainPanel C# class file and then update the CreateDeviceDependentResources implementation to support asynchronous resource creation. Lastly, we will take a look at some of the additional changes necessary within the code for loading meshes and textures.
Let's begin by opening the D3DPanel.xaml.cs file and registering an event handler for the Loaded event within the constructor.
public D3DPanel()
{
this.InitializeComponent();
this.Loaded += swapChainPanel_Loaded...
Change the font size
Change margin width
Change background colour