Skip to content

Commit ec9437f

Browse files
committed
Windows 10 RTM Release - August 2015 Update 3
1 parent 2cdeb3d commit ec9437f

File tree

234 files changed

+6805
-282
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

234 files changed

+6805
-282
lines changed

README.md

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,10 @@ For additional Windows samples, see [Windows on GitHub](http://microsoft.github.
121121
</tr>
122122
<tr>
123123
<td><a href="Samples/Appointments">Appointment calendar</a></td>
124+
<td><a href="Samples/ContactCards">Contact cards</a></td>
125+
<td><a href="Samples/ContactPicker">Contact picker</a></td>
126+
</tr>
127+
<tr>
124128
<td><a href="Samples/UserDataAccountManager">UserDataAccountManager</a></td>
125129
</tr>
126130
</table>
@@ -135,45 +139,46 @@ For additional Windows samples, see [Windows on GitHub](http://microsoft.github.
135139
</tr>
136140
<tr>
137141
<td><a href="Samples/XamlContextMenu">Context menu (XAML)</a></td>
142+
<td><a href="Samples/DisplayOrientation">Display orientation</a></td>
138143
<td><a href="Samples/DWriteTextLayoutCloudFont">Downloadable fonts (DirectWrite)</a></td>
139-
<td><a href="Samples/XamlDragAndDrop">Drag and drop</a></td>
140144
</tr>
141145
<tr>
146+
<td><a href="Samples/XamlDragAndDrop">Drag and drop</a></td>
142147
<td><a href="Samples/DWriteLineSpacingModes">Line spacing (DirectWrite)</a></td>
143148
<td><a href="Samples/XamlFocusVisuals">Focus visuals</a></td>
144-
<td><a href="Samples/FullScreenMode">Full screen mode</a></td>
145149
</tr>
146150
<tr>
151+
<td><a href="Samples/FullScreenMode">Full screen mode</a></td>
147152
<td><a href="Samples/WebView">HTML WebView control</a></td>
148153
<td><a href="Samples/XamlListView">ListView and GridView</a></td>
149-
<td><a href="Samples/LockScreenApps">Lock screen apps</a></td>
150154
</tr>
151155
<tr>
156+
<td><a href="Samples/LockScreenApps">Lock screen apps</a></td>
152157
<td><a href="Samples/MessageDialog">Message dialog</a></td>
153158
<td><a href="Samples/MultipleViews">Multiple views</a></td>
154-
<td><a href="Samples/OCR">OCR</a></td>
155159
</tr>
156160
<tr>
161+
<td><a href="Samples/OCR">OCR</a></td>
157162
<td><a href="Samples/Printing">Printing</a></td>
158163
<td><a href="Samples/XamlPullToRefresh">Pull to refresh</a></td>
159-
<td><a href="Samples/ResizeAppView">Window resizing</a></td>
160164
</tr>
161165
<tr>
166+
<td><a href="Samples/ResizeAppView">Window resizing</a></td>
162167
<td><a href="Samples/DpiScaling">Scaling according to DPI</a></td>
163168
<td><a href="Samples/SplashScreen">Splash screen</a></td>
164-
<td><a href="Samples/XamlStateTriggers">State triggers</a></td>
165169
</tr>
166170
<tr>
171+
<td><a href="Samples/XamlStateTriggers">State triggers</a></td>
167172
<td><a href="Samples/TitleBar">Title bar</a></td>
168173
<td><a href="Samples/UserSelection">Disabling selection</a></td>
169-
<td><a href="Samples/UserInteractionMode">User interaction mode</a></td>
170174
</tr>
171175
<tr>
176+
<td><a href="Samples/UserInteractionMode">User interaction mode</a></td>
172177
<td><a href="Samples/XamlCommanding">Commanding</a></td>
173178
<td><a href="Samples/XamlCloudFontIntegration">Downloadable fonts (XAML)</a></td>
174-
<td><a href="Samples/XamlResponsiveTechniques">Responsiveness techniques</a></td>
175179
</tr>
176180
<tr>
181+
<td><a href="Samples/XamlResponsiveTechniques">Responsiveness techniques</a></td>
177182
<td><a href="Samples/XamlTailoredMultipleViews">Tailored multiple views</a></td>
178183
<td><a href="Samples/XamlUIBasics">XAML UI basics</a></td>
179184
</tr>

Samples/Accelerometer/README.md

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
# Accelerometer sample
77

8-
This sample shows how to use the [**Accelerometer**](http://msdn.microsoft.com/library/windows/apps/br225687) API.
8+
This sample shows how to use the [**Accelerometer**](http://msdn.microsoft.com/library/windows/apps/br225687) class.
99

1010
This sample allows the user to view the acceleration forces along the X-, Y-, and Z-axes for a 3-axis accelerometer. You can choose one of four scenarios:
1111

@@ -15,7 +15,7 @@ This sample allows the user to view the acceleration forces along the X-, Y-, an
1515
- Accelerometer orientation changed
1616
- Accelerometer data events batching
1717

18-
### Acclerometer Data Events
18+
### Accelerometer Data Events
1919

2020
When you choose the **Enable** button for the **Data Events** option, the app begins streaming accelerometer readings in real time.
2121

@@ -31,19 +31,25 @@ When you choose the **Enable** button for the **Polling** option, the app will r
3131

3232
When you choose the **Enable** button for the **OrientationChange** option, the app will display both raw sensor readings, as well as sensor readings that align with the current display orientation.
3333

34-
### Accelerometer data events batching**
34+
### Accelerometer data events batching
3535

3636
When you choose the **Enable** button for the **Data Events** option, the app begins streaming accelerometer readings. The readings may be delivered in batches if the device supports data batching.
3737

3838
## Related topics
3939

40-
[**Accelerometer.GetCurrentReading method**](http://msdn.microsoft.com/library/windows/apps/br225699)
40+
### Samples
4141

42-
[**Accelerometer.ReadingChanged event handler**](http://msdn.microsoft.com/library/windows/apps/br225702)
42+
[**Display orientation** sample](../DisplayOrientation)
43+
44+
### Reference
45+
46+
[**Accelerometer.GetCurrentReading** method](http://msdn.microsoft.com/library/windows/apps/br225699)
47+
48+
[**Accelerometer.ReadingChanged** event handler](http://msdn.microsoft.com/library/windows/apps/br225702)
4349

4450
[Quickstart: Responding to user movement with the accelerometer](http://msdn.microsoft.com/library/windows/apps/hh465265)
4551

46-
[Windows.Devices.Sensors namespace](http://go.microsoft.com/fwlink/p/?linkid=241981)
52+
[**Windows.Devices.Sensors** namespace](http://go.microsoft.com/fwlink/p/?linkid=241981)
4753

4854
## System requirements
4955

Samples/Appointments/cs/Package.appxmanifest

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
</Properties>
1010
<Dependencies>
1111
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.10240.0" MaxVersionTested="10.0.10240.0" />
12-
<PackageDependency Name="Microsoft.NET.Native.RunTime.1.0" MinVersion="1.0.0.0" Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US" />
1312
</Dependencies>
1413
<Resources>
1514
<Resource Language="x-generate" />

Samples/AssociationLaunching/cs/Package.appxmanifest

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
</Properties>
1010
<Dependencies>
1111
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.10240.0" MaxVersionTested="10.0.10240.0" />
12-
<PackageDependency Name="Microsoft.NET.Native.RunTime.1.0" MinVersion="1.0.0.0" Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US" />
1312
</Dependencies>
1413
<Resources>
1514
<Resource Language="x-generate" />

Samples/BackButton/cs/SystemBack.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,9 @@
157157
<Link>Assets\windows-sdk.png</Link>
158158
</Content>
159159
</ItemGroup>
160+
<ItemGroup>
161+
<None Include="project.json" />
162+
</ItemGroup>
160163
<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' &lt; '14.0' ">
161164
<VisualStudioVersion>14.0</VisualStudioVersion>
162165
</PropertyGroup>

Samples/BackButton/cs/project.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"dependencies": {
3+
"Microsoft.NETCore.UniversalWindowsPlatform": "5.0.0"
4+
},
5+
"frameworks": {
6+
"uap10.0": {}
7+
},
8+
"runtimes": {
9+
"win10-arm": {},
10+
"win10-arm-aot": {},
11+
"win10-x86": {},
12+
"win10-x86-aot": {},
13+
"win10-x64": {},
14+
"win10-x64-aot": {}
15+
}
16+
}

Samples/BackgroundTask/cs/BackgroundTask/SampleConfiguration.cs

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
using Windows.UI.Xaml.Controls;
1616
using Windows.ApplicationModel.Background;
1717
using Windows.Storage;
18-
using BackgroundTask;
1918

2019
namespace SDKTemplate
2120
{
@@ -25,11 +24,11 @@ public partial class MainPage : Page
2524

2625
List<Scenario> scenarios = new List<Scenario>
2726
{
28-
new Scenario() { Title="Background Task", ClassType=typeof(BackgroundTask.SampleBackgroundTask)},
29-
new Scenario() { Title="Background Task with Condition", ClassType=typeof(BackgroundTask.SampleBackgroundTaskWithCondition)},
30-
new Scenario() { Title="Servicing Complete Task", ClassType=typeof(BackgroundTask.ServicingCompleteTask)},
31-
new Scenario() { Title="Background Task with Time Trigger", ClassType=typeof(BackgroundTask.TimeTriggeredTask) },
32-
new Scenario() { Title="Background Task with Application Trigger", ClassType=typeof(BackgroundTask.ApplicationTriggerTask) }
27+
new Scenario() { Title="Background Task", ClassType=typeof(SampleBackgroundTask)},
28+
new Scenario() { Title="Background Task with Condition", ClassType=typeof(SampleBackgroundTaskWithCondition)},
29+
new Scenario() { Title="Servicing Complete Task", ClassType=typeof(ServicingCompleteTask)},
30+
new Scenario() { Title="Background Task with Time Trigger", ClassType=typeof(TimeTriggeredTask) },
31+
new Scenario() { Title="Background Task with Application Trigger", ClassType=typeof(ApplicationTriggerTask) }
3332
};
3433
}
3534

@@ -40,7 +39,7 @@ public class Scenario
4039
}
4140
}
4241

43-
namespace BackgroundTask
42+
namespace SDKTemplate
4443
{
4544
class BackgroundTaskSample
4645
{

Samples/BackgroundTask/cs/BackgroundTask/Scenario1_SampleBackgroundTask.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
// The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=234238
2222

23-
namespace BackgroundTask
23+
namespace SDKTemplate
2424
{
2525
/// <summary>
2626
/// An empty page that can be used on its own or navigated to within a Frame.

Samples/BackgroundTask/cs/BackgroundTask/Scenario2_SampleBackgroundTaskWithCondition.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
// The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=234238
2323

24-
namespace BackgroundTask
24+
namespace SDKTemplate
2525
{
2626
/// <summary>
2727
/// An empty page that can be used on its own or navigated to within a Frame.

Samples/BackgroundTask/cs/BackgroundTask/Scenario3_ServicingCompleteTask.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
// The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=234238
2222

23-
namespace BackgroundTask
23+
namespace SDKTemplate
2424
{
2525
/// <summary>
2626
/// An empty page that can be used on its own or navigated to within a Frame.

0 commit comments

Comments
 (0)