Skip to content

Commit 1f2633e

Browse files
committed
Windows 10 RTM Release - October 2015 Update 2
1 parent 93bdfb9 commit 1f2633e

File tree

714 files changed

+39806
-3269
lines changed

Some content is hidden

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

714 files changed

+39806
-3269
lines changed

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,9 @@ For additional Windows samples, see [Windows on GitHub](http://microsoft.github.
203203
<td><a href="Samples/SimpleInk">Simple inking</a></td>
204204
<td><a href="Samples/TouchKeyboard">Touch keyboard</a></td>
205205
</tr>
206+
<tr>
207+
<td><a href="Samples/TouchKeyboardTextInput">Touch keyboard text input</a></td>
208+
</tr>
206209
</table>
207210
<table>
208211
<tr>
+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 14
4+
VisualStudioVersion = 14.0.22820.0
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "Accelerometer", "Accelerometer.vbproj", "{1399F59A-6590-4E35-ACCF-5200C175D88B}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|ARM = Debug|ARM
11+
Debug|x64 = Debug|x64
12+
Debug|x86 = Debug|x86
13+
Release|ARM = Release|ARM
14+
Release|x64 = Release|x64
15+
Release|x86 = Release|x86
16+
EndGlobalSection
17+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
18+
{1399F59A-6590-4E35-ACCF-5200C175D88B}.Debug|ARM.ActiveCfg = Debug|ARM
19+
{1399F59A-6590-4E35-ACCF-5200C175D88B}.Debug|ARM.Build.0 = Debug|ARM
20+
{1399F59A-6590-4E35-ACCF-5200C175D88B}.Debug|ARM.Deploy.0 = Debug|ARM
21+
{1399F59A-6590-4E35-ACCF-5200C175D88B}.Debug|x64.ActiveCfg = Debug|x64
22+
{1399F59A-6590-4E35-ACCF-5200C175D88B}.Debug|x64.Build.0 = Debug|x64
23+
{1399F59A-6590-4E35-ACCF-5200C175D88B}.Debug|x64.Deploy.0 = Debug|x64
24+
{1399F59A-6590-4E35-ACCF-5200C175D88B}.Debug|x86.ActiveCfg = Debug|x86
25+
{1399F59A-6590-4E35-ACCF-5200C175D88B}.Debug|x86.Build.0 = Debug|x86
26+
{1399F59A-6590-4E35-ACCF-5200C175D88B}.Debug|x86.Deploy.0 = Debug|x86
27+
{1399F59A-6590-4E35-ACCF-5200C175D88B}.Release|ARM.ActiveCfg = Release|ARM
28+
{1399F59A-6590-4E35-ACCF-5200C175D88B}.Release|ARM.Build.0 = Release|ARM
29+
{1399F59A-6590-4E35-ACCF-5200C175D88B}.Release|ARM.Deploy.0 = Release|ARM
30+
{1399F59A-6590-4E35-ACCF-5200C175D88B}.Release|x64.ActiveCfg = Release|x64
31+
{1399F59A-6590-4E35-ACCF-5200C175D88B}.Release|x64.Build.0 = Release|x64
32+
{1399F59A-6590-4E35-ACCF-5200C175D88B}.Release|x64.Deploy.0 = Release|x64
33+
{1399F59A-6590-4E35-ACCF-5200C175D88B}.Release|x86.ActiveCfg = Release|x86
34+
{1399F59A-6590-4E35-ACCF-5200C175D88B}.Release|x86.Build.0 = Release|x86
35+
{1399F59A-6590-4E35-ACCF-5200C175D88B}.Release|x86.Deploy.0 = Release|x86
36+
EndGlobalSection
37+
GlobalSection(SolutionProperties) = preSolution
38+
HideSolutionNode = FALSE
39+
EndGlobalSection
40+
EndGlobal
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,242 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<PropertyGroup>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6+
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
7+
<ProjectGuid>{1399F59A-6590-4E35-ACCF-5200C175D88B}</ProjectGuid>
8+
<!--<OutputType>AppContainerExe</OutputType>-->
9+
<OutputType>AppContainerExe</OutputType>
10+
<RootNamespace>SDKTemplate</RootNamespace>
11+
<AssemblyName>Accelerometer</AssemblyName>
12+
<DefaultLanguage>en-US</DefaultLanguage>
13+
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
14+
<TargetPlatformVersion>10.0.10240.0</TargetPlatformVersion>
15+
<TargetPlatformMinVersion>10.0.10240.0</TargetPlatformMinVersion>
16+
<MinimumVisualStudioVersion>14</MinimumVisualStudioVersion>
17+
<EnableDotNetNativeCompatibleProfile>true</EnableDotNetNativeCompatibleProfile>
18+
<FileAlignment>512</FileAlignment>
19+
<ProjectTypeGuids>{A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{F184B08F-C81C-45F6-A57F-5ABD9991F28F}</ProjectTypeGuids>
20+
<!--<PackageCertificateKeyFile>VBUniversalApp_TemporaryKey.pfx</PackageCertificateKeyFile>-->
21+
</PropertyGroup>
22+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|ARM'">
23+
<DebugSymbols>true</DebugSymbols>
24+
<DefineDebug>true</DefineDebug>
25+
<DefineTrace>true</DefineTrace>
26+
<OutputPath>bin\ARM\Debug\</OutputPath>
27+
<DefineConstants>NETFX_CORE,WINDOWS_UWP</DefineConstants>
28+
<DebugType>full</DebugType>
29+
<PlatformTarget>ARM</PlatformTarget>
30+
<UseVSHostingProcess>false</UseVSHostingProcess>
31+
<Prefer32Bit>true</Prefer32Bit>
32+
<NoWarn>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036,42314</NoWarn>
33+
</PropertyGroup>
34+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|ARM'">
35+
<DefineTrace>true</DefineTrace>
36+
<OutputPath>bin\ARM\Release\</OutputPath>
37+
<DefineConstants>NETFX_CORE,WINDOWS_UWP</DefineConstants>
38+
<Optimize>true</Optimize>
39+
<DebugType>pdbonly</DebugType>
40+
<PlatformTarget>ARM</PlatformTarget>
41+
<UseVSHostingProcess>false</UseVSHostingProcess>
42+
<Prefer32Bit>true</Prefer32Bit>
43+
<NoWarn>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036,42314</NoWarn>
44+
<UseDotNetNativeToolchain>true</UseDotNetNativeToolchain>
45+
</PropertyGroup>
46+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
47+
<DebugSymbols>true</DebugSymbols>
48+
<DefineDebug>true</DefineDebug>
49+
<DefineTrace>true</DefineTrace>
50+
<OutputPath>bin\x64\Debug\</OutputPath>
51+
<DefineConstants>NETFX_CORE,WINDOWS_UWP</DefineConstants>
52+
<DebugType>full</DebugType>
53+
<PlatformTarget>x64</PlatformTarget>
54+
<UseVSHostingProcess>false</UseVSHostingProcess>
55+
<Prefer32Bit>true</Prefer32Bit>
56+
<NoWarn>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036,42314</NoWarn>
57+
</PropertyGroup>
58+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
59+
<DefineTrace>true</DefineTrace>
60+
<OutputPath>bin\x64\Release\</OutputPath>
61+
<DefineConstants>NETFX_CORE,WINDOWS_UWP</DefineConstants>
62+
<Optimize>true</Optimize>
63+
<DebugType>pdbonly</DebugType>
64+
<PlatformTarget>x64</PlatformTarget>
65+
<UseVSHostingProcess>false</UseVSHostingProcess>
66+
<Prefer32Bit>true</Prefer32Bit>
67+
<NoWarn>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036,42314</NoWarn>
68+
<UseDotNetNativeToolchain>true</UseDotNetNativeToolchain>
69+
</PropertyGroup>
70+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
71+
<DebugSymbols>true</DebugSymbols>
72+
<DefineDebug>true</DefineDebug>
73+
<DefineTrace>true</DefineTrace>
74+
<OutputPath>bin\x86\Debug\</OutputPath>
75+
<DefineConstants>NETFX_CORE,WINDOWS_UWP</DefineConstants>
76+
<DebugType>full</DebugType>
77+
<PlatformTarget>x86</PlatformTarget>
78+
<UseVSHostingProcess>false</UseVSHostingProcess>
79+
<Prefer32Bit>true</Prefer32Bit>
80+
<NoWarn>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036,42314</NoWarn>
81+
</PropertyGroup>
82+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
83+
<DefineTrace>true</DefineTrace>
84+
<OutputPath>bin\x86\Release\</OutputPath>
85+
<DefineConstants>NETFX_CORE,WINDOWS_UWP</DefineConstants>
86+
<Optimize>true</Optimize>
87+
<DebugType>pdbonly</DebugType>
88+
<PlatformTarget>x86</PlatformTarget>
89+
<UseVSHostingProcess>false</UseVSHostingProcess>
90+
<Prefer32Bit>true</Prefer32Bit>
91+
<NoWarn>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036,42314</NoWarn>
92+
<UseDotNetNativeToolchain>true</UseDotNetNativeToolchain>
93+
</PropertyGroup>
94+
<ItemGroup>
95+
<None Include="project.json" />
96+
</ItemGroup>
97+
<ItemGroup>
98+
<Compile Include="..\..\..\SharedContent\vb\App.xaml.vb">
99+
<Link>App.xaml.vb</Link>
100+
<DependentUpon>App.xaml</DependentUpon>
101+
</Compile>
102+
<Compile Include="..\..\..\SharedContent\vb\MainPage.xaml.vb">
103+
<Link>MainPage.xaml.vb</Link>
104+
<DependentUpon>MainPage.xaml</DependentUpon>
105+
</Compile>
106+
<Compile Include="..\..\..\SharedContent\vb\AssemblyInfo.vb">
107+
<Link>Properties\AssemblyInfo.vb</Link>
108+
</Compile>
109+
<Compile Include="SampleConfiguration.vb" />
110+
<Compile Include="Scenario1_DataEvents.xaml.vb" />
111+
<Compile Include="Scenario2_ShakeEvents.xaml.vb" />
112+
<Compile Include="Scenario3_Polling.xaml.vb" />
113+
<Compile Include="Scenario4_OrientationChanged.xaml.vb" />
114+
<Compile Include="Scenario5_DataEventsBatching.xaml.vb" />
115+
</ItemGroup>
116+
<ItemGroup>
117+
<AppxManifest Include="Package.appxmanifest">
118+
<SubType>Designer</SubType>
119+
</AppxManifest>
120+
</ItemGroup>
121+
<ItemGroup>
122+
<ApplicationDefinition Include="..\..\..\SharedContent\xaml\App.xaml">
123+
<Link>App.xaml</Link>
124+
<Generator>MSBuild:Compile</Generator>
125+
<SubType>Designer</SubType>
126+
</ApplicationDefinition>
127+
<Page Include="..\..\..\SharedContent\vb\MainPage.xaml">
128+
<Link>MainPage.xaml</Link>
129+
<Generator>MSBuild:Compile</Generator>
130+
<SubType>Designer</SubType>
131+
</Page>
132+
<Page Include="..\shared\Scenario1_DataEvents.xaml">
133+
<Link>Scenario1_DataEvents.xaml</Link>
134+
<Generator>MSBuild:Compile</Generator>
135+
<SubType>Designer</SubType>
136+
</Page>
137+
<Page Include="..\shared\Scenario2_ShakeEvents.xaml">
138+
<Link>Scenario2_ShakeEvents.xaml</Link>
139+
<Generator>MSBuild:Compile</Generator>
140+
<SubType>Designer</SubType>
141+
</Page>
142+
<Page Include="..\shared\Scenario3_Polling.xaml">
143+
<Link>Scenario3_Polling.xaml</Link>
144+
<Generator>MSBuild:Compile</Generator>
145+
<SubType>Designer</SubType>
146+
</Page>
147+
<Page Include="..\shared\Scenario4_OrientationChanged.xaml">
148+
<Link>Scenario4_OrientationChanged.xaml</Link>
149+
<Generator>MSBuild:Compile</Generator>
150+
<SubType>Designer</SubType>
151+
</Page>
152+
<Page Include="..\shared\Scenario5_DataEventsBatching.xaml">
153+
<Link>Scenario5_DataEventsBatching.xaml</Link>
154+
<Generator>MSBuild:Compile</Generator>
155+
<SubType>Designer</SubType>
156+
</Page>
157+
<Page Include="..\..\..\SharedContent\xaml\Styles.xaml">
158+
<Link>Styles\Styles.xaml</Link>
159+
<Generator>MSBuild:Compile</Generator>
160+
<SubType>Designer</SubType>
161+
</Page>
162+
</ItemGroup>
163+
<ItemGroup>
164+
<Content Include="..\..\..\SharedContent\vb\Default.rd.xml">
165+
<Link>Properties\Default.rd.xml</Link>
166+
</Content>
167+
<Content Include="..\..\..\SharedContent\media\microsoft-sdk.png">
168+
<Link>Assets\microsoft-sdk.png</Link>
169+
</Content>
170+
<Content Include="..\..\..\SharedContent\media\smalltile-sdk.png">
171+
<Link>Assets\smallTile-sdk.png</Link>
172+
</Content>
173+
<Content Include="..\..\..\SharedContent\media\splash-sdk.png">
174+
<Link>Assets\splash-sdk.png</Link>
175+
</Content>
176+
<Content Include="..\..\..\SharedContent\media\squaretile-sdk.png">
177+
<Link>Assets\squareTile-sdk.png</Link>
178+
</Content>
179+
<Content Include="..\..\..\SharedContent\media\storelogo-sdk.png">
180+
<Link>Assets\storeLogo-sdk.png</Link>
181+
</Content>
182+
<Content Include="..\..\..\SharedContent\media\tile-sdk.png">
183+
<Link>Assets\tile-sdk.png</Link>
184+
</Content>
185+
<Content Include="..\..\..\SharedContent\media\windows-sdk.png">
186+
<Link>Assets\windows-sdk.png</Link>
187+
</Content>
188+
</ItemGroup>
189+
<ItemGroup>
190+
<Import Include="Microsoft.VisualBasic" />
191+
<Import Include="System" />
192+
<Import Include="System.Collections" />
193+
<Import Include="System.Collections.Generic" />
194+
<Import Include="System.Collections.ObjectModel" />
195+
<Import Include="System.ComponentModel" />
196+
<Import Include="System.Diagnostics" />
197+
<Import Include="System.IO" />
198+
<Import Include="System.Linq" />
199+
<Import Include="System.Runtime.CompilerServices" />
200+
<Import Include="System.Runtime.InteropServices.WindowsRuntime" />
201+
<Import Include="System.Threading.Tasks" />
202+
<Import Include="System.Windows.Input" />
203+
<Import Include="System.Xml.Linq" />
204+
<Import Include="Windows.ApplicationModel" />
205+
<Import Include="Windows.ApplicationModel.Activation" />
206+
<Import Include="Windows.Foundation" />
207+
<Import Include="Windows.Foundation.Collections" />
208+
<Import Include="Windows.Graphics.Display" />
209+
<Import Include="Windows.UI.ViewManagement" />
210+
<Import Include="Windows.UI.Xaml" />
211+
<Import Include="Windows.UI.Xaml.Controls" />
212+
<Import Include="Windows.UI.Xaml.Controls.Primitives" />
213+
<Import Include="Windows.UI.Xaml.Data" />
214+
<Import Include="Windows.UI.Xaml.Input" />
215+
<Import Include="Windows.UI.Xaml.Media" />
216+
<Import Include="Windows.UI.Xaml.Media.Imaging" />
217+
<Import Include="Windows.UI.Xaml.Navigation" />
218+
</ItemGroup>
219+
<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' &lt; '14.0' ">
220+
<VisualStudioVersion>14.0</VisualStudioVersion>
221+
</PropertyGroup>
222+
<PropertyGroup>
223+
<OptionExplicit>On</OptionExplicit>
224+
</PropertyGroup>
225+
<PropertyGroup>
226+
<OptionCompare>Binary</OptionCompare>
227+
</PropertyGroup>
228+
<PropertyGroup>
229+
<OptionStrict>Off</OptionStrict>
230+
</PropertyGroup>
231+
<PropertyGroup>
232+
<OptionInfer>On</OptionInfer>
233+
</PropertyGroup>
234+
<Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.VisualBasic.targets" />
235+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
236+
Other similar extension points exist, see Microsoft.Common.targets.
237+
<Target Name="BeforeBuild">
238+
</Target>
239+
<Target Name="AfterBuild">
240+
</Target>
241+
-->
242+
</Project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
3+
<Package
4+
xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
5+
xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest"
6+
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
7+
IgnorableNamespaces="uap mp">
8+
9+
<Identity
10+
Name="Microsoft.SDKSamples.Accelerometer.VB"
11+
Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US"
12+
Version="1.0.0.0" />
13+
14+
15+
<mp:PhoneIdentity PhoneProductId="3df6c60c-2c0b-4061-9e7b-3108ff8067e6" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
16+
17+
<Properties>
18+
<DisplayName>Accelerometer VB Sample</DisplayName>
19+
<PublisherDisplayName>Microsoft Corporation</PublisherDisplayName>
20+
<Logo>Assets\StoreLogo-sdk.png</Logo>
21+
</Properties>
22+
23+
<Dependencies>
24+
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.10240.0" MaxVersionTested="10.0.10240.0" />
25+
</Dependencies>
26+
27+
<Resources>
28+
<Resource Language="x-generate"/>
29+
</Resources>
30+
31+
<Applications>
32+
<Application Id="App"
33+
Executable="$targetnametoken$.exe"
34+
EntryPoint="Accelerometer.App">
35+
<uap:VisualElements
36+
DisplayName="Accelerometer VB Sample"
37+
Square150x150Logo="Assets\SquareTile-sdk.png"
38+
Square44x44Logo="Assets\SmallTile-sdk.png"
39+
Description="Accelerometer VB Sample"
40+
BackgroundColor="#00b2f0">
41+
<uap:SplashScreen Image="Assets\Splash-sdk.png" />
42+
<uap:DefaultTile>
43+
<uap:ShowNameOnTiles>
44+
<uap:ShowOn Tile="square150x150Logo" />
45+
</uap:ShowNameOnTiles>
46+
</uap:DefaultTile>
47+
</uap:VisualElements>
48+
</Application>
49+
</Applications>
50+
51+
</Package>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
'*********************************************************
2+
'
3+
' Copyright (c) Microsoft. All rights reserved.
4+
' This code is licensed under the MIT License (MIT).
5+
' THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF
6+
' ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY
7+
' IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR
8+
' PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.
9+
'
10+
'*********************************************************
11+
Imports System
12+
Imports System.Collections.Generic
13+
Imports Windows.UI.Xaml.Controls
14+
15+
Namespace Global.SDKTemplate
16+
17+
Public Partial Class MainPage
18+
Inherits Page
19+
20+
Public Const FEATURE_NAME As String = "Accelerometer"
21+
22+
Public ReadOnly Property scenarios As New List(Of Scenario) From {New Scenario() With {.Title = "Data events", .ClassType = GetType(Scenario1_DataEvents)}, New Scenario() With {.Title = "Shake events", .ClassType = GetType(Scenario2_ShakeEvents)}, New Scenario() With {.Title = "Polling", .ClassType = GetType(Scenario3_Polling)}, New Scenario() With {.Title = "OrientationChange", .ClassType = GetType(Scenario4_OrientationChanged)}, New Scenario() With {.Title = "Data events batching", .ClassType = GetType(Scenario5_DataEventsBatching)}}
23+
End Class
24+
25+
Public Class Scenario
26+
27+
Public Property Title As String
28+
29+
Public Property ClassType As Type
30+
End Class
31+
End Namespace

0 commit comments

Comments
 (0)