Skip to content

Commit

Permalink
Windows 10 RTM Release - November 2015 Update 2
Browse files Browse the repository at this point in the history
  • Loading branch information
oldnewthing committed Nov 24, 2015
1 parent 2d38b5d commit 0b2568a
Show file tree
Hide file tree
Showing 7 changed files with 319 additions and 455 deletions.
4 changes: 4 additions & 0 deletions Samples/CortanaVoiceCommand/cs/AdventureWorks/App.xaml.cs
Expand Up @@ -46,6 +46,7 @@ public App()
/// </summary>
public static NavigationService NavigationService { get; private set; }

private RootFrameNavigationHelper rootFrameNavigationHelper;

/// <summary>
/// Invoked when the application is launched normally by the end user. Other entry points
Expand All @@ -65,6 +66,9 @@ protected async override void OnLaunched(LaunchActivatedEventArgs e)
rootFrame = new Frame();
App.NavigationService = new NavigationService(rootFrame);

// Use the RootFrameNavigationHelper to respond to keyboard and mouse shortcuts.
this.rootFrameNavigationHelper = new RootFrameNavigationHelper(rootFrame);

rootFrame.NavigationFailed += OnNavigationFailed;

// Place the frame in the current Window
Expand Down
364 changes: 154 additions & 210 deletions Samples/CortanaVoiceCommand/cs/AdventureWorks/Common/NavigationHelper.cs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Samples/FolderEnumeration/cs/Package.appxmanifest
Expand Up @@ -21,7 +21,7 @@
</Properties>

<Dependencies>
<TargetDeviceFamily Name="Windows.Mobile" MinVersion="10.0.10240.0" MaxVersionTested="10.0.10240.0" />
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.10240.0" MaxVersionTested="10.0.10240.0" />
</Dependencies>

<Resources>
Expand Down
2 changes: 1 addition & 1 deletion Samples/TouchKeyboard/cpp/Package.appxmanifest
Expand Up @@ -20,7 +20,7 @@
</Properties>

<Dependencies>
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.10240.0" MaxVersionTested="10.0.10240.0" />
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.10240.0" MaxVersionTested="10.0.10240.0" />
</Dependencies>

<Resources>
Expand Down
2 changes: 1 addition & 1 deletion Samples/TouchKeyboard/cs/Package.appxmanifest
Expand Up @@ -21,7 +21,7 @@
</Properties>

<Dependencies>
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.10240.0" MaxVersionTested="10.0.10240.0" />
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.10240.0" MaxVersionTested="10.0.10240.0" />
<PackageDependency Name="Microsoft.VCLibs.140.00" MinVersion="14.0.0.0" Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US" />
</Dependencies>

Expand Down

0 comments on commit 0b2568a

Please sign in to comment.