Skip to content

Commit 2b58558

Browse files
committed
Windows 10 RTM Release - October 2015 Update 4
1 parent 22bbec2 commit 2b58558

Some content is hidden

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

42 files changed

+3199
-64
lines changed

README.md

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -146,46 +146,49 @@ For additional Windows samples, see [Windows on GitHub](http://microsoft.github.
146146
<tr>
147147
<td><a href="Samples/ContextMenu">Context menu</a></td>
148148
<td><a href="Samples/XamlContextMenu">Context menu (XAML)</a></td>
149-
<td><a href="Samples/UserSelection">Disabling selection</a></td>
149+
<td><a href="Samples/XamlDataVirtualization">Data virtualization</a></td>
150150
</tr>
151151
<tr>
152+
<td><a href="Samples/UserSelection">Disabling selection</a></td>
152153
<td><a href="Samples/DisplayOrientation">Display orientation</a></td>
153154
<td><a href="Samples/DWriteTextLayoutCloudFont">Downloadable fonts (DirectWrite)</a></td>
154-
<td><a href="Samples/XamlCloudFontIntegration">Downloadable fonts (XAML)</a></td>
155155
</tr>
156156
<tr>
157+
<td><a href="Samples/XamlCloudFontIntegration">Downloadable fonts (XAML)</a></td>
157158
<td><a href="Samples/XamlDragAndDrop">Drag and drop</a></td>
158159
<td><a href="Samples/XamlFocusVisuals">Focus visuals</a></td>
159-
<td><a href="Samples/FullScreenMode">Full screen mode</a></td>
160160
</tr>
161161
<tr>
162+
<td><a href="Samples/FullScreenMode">Full screen mode</a></td>
162163
<td><a href="Samples/DWriteLineSpacingModes">Line spacing (DirectWrite)</a></td>
163164
<td><a href="Samples/XamlListView">ListView and GridView</a></td>
164-
<td><a href="Samples/LockScreenApps">Lock screen apps</a></td>
165165
</tr>
166166
<tr>
167+
<td><a href="Samples/LockScreenApps">Lock screen apps</a></td>
167168
<td><a href="Samples/MessageDialog">Message dialog</a></td>
168169
<td><a href="Samples/MultipleViews">Multiple views</a></td>
169-
<td><a href="Samples/OCR">OCR</a></td>
170170
</tr>
171171
<tr>
172+
<td><a href="Samples/OCR">OCR</a></td>
172173
<td><a href="Samples/Printing">Printing</a></td>
173174
<td><a href="Samples/XamlPullToRefresh">Pull-to-refresh</a></td>
174-
<td><a href="Samples/XamlResponsiveTechniques">Responsiveness techniques</a></td>
175175
</tr>
176176
<tr>
177+
<td><a href="Samples/XamlResponsiveTechniques">Responsiveness techniques</a></td>
177178
<td><a href="Samples/DpiScaling">Scaling according to DPI</a></td>
178179
<td><a href="Samples/SplashScreen">Splash screen</a></td>
179-
<td><a href="Samples/XamlStateTriggers">State triggers</a></td>
180180
</tr>
181181
<tr>
182+
<td><a href="Samples/XamlStateTriggers">State triggers</a></td>
182183
<td><a href="Samples/XamlTailoredMultipleViews">Tailored multiple views</a></td>
183184
<td><a href="Samples/TitleBar">Title bar</a></td>
184-
<td><a href="Samples/XamlUIBasics">UI basics (XAML)</a></td>
185185
</tr>
186186
<tr>
187+
<td><a href="Samples/XamlUIBasics">UI basics (XAML)</a></td>
187188
<td><a href="Samples/UserInteractionMode">User interaction mode</a></td>
188189
<td><a href="Samples/WebView">WebView control (HTML)</a></td>
190+
</tr>
191+
<tr>
189192
<td><a href="Samples/ResizeAppView">Window resizing</a></td>
190193
</tr>
191194
</table>
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
<!---
2+
category: ContactsAndCalendar
3+
-->
4+
5+
# Contact Card integration sample
6+
7+
This sample shows how to integrate your app into the People App's contact card and the Mini Contact card by using [**annotations**](https://msdn.microsoft.com/en-us/library/windows/apps/windows.applicationmodel.contacts.contactannotationlist.aspx).
8+
9+
**Note** The Windows universal samples require Visual Studio 2015 to build and Windows 10 to execute.
10+
11+
To obtain information about Windows 10 development, go to the [Windows Dev Center](https://dev.windows.com)
12+
13+
To obtain information about Microsoft Visual Studio 2015 and the tools for developing Windows apps, go to [Visual Studio 2015](http://go.microsoft.com/fwlink/?LinkID=532422)
14+
15+
## Related topics
16+
17+
### Samples
18+
19+
[**ContactCards**](../ContactCards)
20+
21+
[**ContactPicker**](../ContactPicker)
22+
23+
### Reference
24+
25+
[**ContactAnnotationList**](https://msdn.microsoft.com/en-us/library/windows/apps/windows.applicationmodel.contacts.contactannotationlist.aspx)
26+
27+
[**ContactAnnotation**](https://msdn.microsoft.com/en-us/library/windows/apps/windows.applicationmodel.contacts.contactannotation.aspx)
28+
29+
[**Windows.ApplicationModel.Contacts**](http://msdn.microsoft.com/library/windows/apps/br225002)
30+
31+
[**Handling URI activation (XAML)**](https://technet.microsoft.com/en-us/windowsserver/hh779670)
32+
33+
## System requirements
34+
35+
**Client:** Windows 10
36+
37+
**Server:** Windows Server 2016 Technical Preview
38+
39+
**Phone:** Windows 10
40+
41+
## Build the sample
42+
43+
1. If you download the samples ZIP, be sure to unzip the entire archive, not just the folder with the sample you want to build.
44+
2. Start Microsoft Visual Studio 2015 and select **File** \> **Open** \> **Project/Solution**.
45+
3. Starting in the folder where you unzipped the samples, go to the Samples subfolder, then the subfolder for this specific sample, then the subfolder for your preferred language (C++, C#, or JavaScript). Double-click the Visual Studio?2015 Solution (.sln) file.
46+
4. Press Ctrl+Shift+B, or select **Build** \> **Build Solution**.
47+
48+
## Run the sample
49+
50+
The next steps depend on whether you just want to deploy the sample or you want to both deploy and run it.
51+
52+
### Deploying the sample
53+
54+
- Select Build > Deploy Solution.
55+
56+
### Deploying and running the sample
57+
58+
- To debug the sample and then run it, press F5 or select Debug > Start Debugging. To run the sample without debugging, press Ctrl+F5 or selectDebug > Start Without Debugging.
Lines changed: 180 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,180 @@
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>{DC30CE66-DAEE-4CCF-BD02-8837FE918B6F}</ProjectGuid>
8+
<OutputType>AppContainerExe</OutputType>
9+
<AppDesignerFolder>Properties</AppDesignerFolder>
10+
<RootNamespace>SDKTemplate</RootNamespace>
11+
<AssemblyName>ContactCardIntegration</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};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
20+
</PropertyGroup>
21+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|ARM'">
22+
<DebugSymbols>true</DebugSymbols>
23+
<OutputPath>bin\ARM\Debug\</OutputPath>
24+
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
25+
<NoWarn>;2008</NoWarn>
26+
<DebugType>full</DebugType>
27+
<PlatformTarget>ARM</PlatformTarget>
28+
<UseVSHostingProcess>false</UseVSHostingProcess>
29+
<ErrorReport>prompt</ErrorReport>
30+
<Prefer32Bit>true</Prefer32Bit>
31+
</PropertyGroup>
32+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|ARM'">
33+
<OutputPath>bin\ARM\Release\</OutputPath>
34+
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
35+
<Optimize>true</Optimize>
36+
<NoWarn>;2008</NoWarn>
37+
<DebugType>pdbonly</DebugType>
38+
<PlatformTarget>ARM</PlatformTarget>
39+
<UseVSHostingProcess>false</UseVSHostingProcess>
40+
<ErrorReport>prompt</ErrorReport>
41+
<Prefer32Bit>true</Prefer32Bit>
42+
<UseDotNetNativeToolchain>true</UseDotNetNativeToolchain>
43+
</PropertyGroup>
44+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
45+
<DebugSymbols>true</DebugSymbols>
46+
<OutputPath>bin\x64\Debug\</OutputPath>
47+
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
48+
<NoWarn>;2008</NoWarn>
49+
<DebugType>full</DebugType>
50+
<PlatformTarget>x64</PlatformTarget>
51+
<UseVSHostingProcess>false</UseVSHostingProcess>
52+
<ErrorReport>prompt</ErrorReport>
53+
<Prefer32Bit>true</Prefer32Bit>
54+
</PropertyGroup>
55+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
56+
<OutputPath>bin\x64\Release\</OutputPath>
57+
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
58+
<Optimize>true</Optimize>
59+
<NoWarn>;2008</NoWarn>
60+
<DebugType>pdbonly</DebugType>
61+
<PlatformTarget>x64</PlatformTarget>
62+
<UseVSHostingProcess>false</UseVSHostingProcess>
63+
<ErrorReport>prompt</ErrorReport>
64+
<Prefer32Bit>true</Prefer32Bit>
65+
<UseDotNetNativeToolchain>true</UseDotNetNativeToolchain>
66+
</PropertyGroup>
67+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
68+
<DebugSymbols>true</DebugSymbols>
69+
<OutputPath>bin\x86\Debug\</OutputPath>
70+
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
71+
<NoWarn>;2008</NoWarn>
72+
<DebugType>full</DebugType>
73+
<PlatformTarget>x86</PlatformTarget>
74+
<UseVSHostingProcess>false</UseVSHostingProcess>
75+
<ErrorReport>prompt</ErrorReport>
76+
<Prefer32Bit>true</Prefer32Bit>
77+
</PropertyGroup>
78+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
79+
<OutputPath>bin\x86\Release\</OutputPath>
80+
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
81+
<Optimize>true</Optimize>
82+
<NoWarn>;2008</NoWarn>
83+
<DebugType>pdbonly</DebugType>
84+
<PlatformTarget>x86</PlatformTarget>
85+
<UseVSHostingProcess>false</UseVSHostingProcess>
86+
<ErrorReport>prompt</ErrorReport>
87+
<Prefer32Bit>true</Prefer32Bit>
88+
<UseDotNetNativeToolchain>true</UseDotNetNativeToolchain>
89+
</PropertyGroup>
90+
<ItemGroup>
91+
<None Include="project.json" />
92+
</ItemGroup>
93+
<ItemGroup>
94+
<Compile Include="..\..\..\SharedContent\cs\App.xaml.cs">
95+
<Link>App.xaml.cs</Link>
96+
<DependentUpon>App.xaml</DependentUpon>
97+
</Compile>
98+
<Compile Include="..\..\..\SharedContent\cs\MainPage.xaml.cs">
99+
<Link>MainPage.xaml.cs</Link>
100+
<DependentUpon>MainPage.xaml</DependentUpon>
101+
</Compile>
102+
<Compile Include="..\..\..\SharedContent\cs\AssemblyInfo.cs">
103+
<Link>Properties\AssemblyInfo.cs</Link>
104+
</Compile>
105+
<Compile Include="SampleConfiguration.cs" />
106+
<Compile Include="Scenario1_CreateContacts.xaml.cs">
107+
<DependentUpon>Scenario1_CreateContacts.xaml</DependentUpon>
108+
</Compile>
109+
<Compile Include="Scenario2_ReceiveContact.xaml.cs">
110+
<DependentUpon>Scenario2_ReceiveContact.xaml</DependentUpon>
111+
</Compile>
112+
</ItemGroup>
113+
<ItemGroup>
114+
<AppxManifest Include="Package.appxmanifest">
115+
<SubType>Designer</SubType>
116+
</AppxManifest>
117+
</ItemGroup>
118+
<ItemGroup>
119+
<ApplicationDefinition Include="..\..\..\SharedContent\xaml\App.xaml">
120+
<Link>App.xaml</Link>
121+
<Generator>MSBuild:Compile</Generator>
122+
<SubType>Designer</SubType>
123+
</ApplicationDefinition>
124+
<Page Include="..\..\..\SharedContent\cs\MainPage.xaml">
125+
<Link>MainPage.xaml</Link>
126+
<Generator>MSBuild:Compile</Generator>
127+
<SubType>Designer</SubType>
128+
</Page>
129+
<Page Include="Scenario1_CreateContacts.xaml">
130+
<Generator>MSBuild:Compile</Generator>
131+
<SubType>Designer</SubType>
132+
</Page>
133+
<Page Include="..\..\..\SharedContent\xaml\Styles.xaml">
134+
<Link>Styles\Styles.xaml</Link>
135+
<Generator>MSBuild:Compile</Generator>
136+
<SubType>Designer</SubType>
137+
</Page>
138+
<Page Include="Scenario2_ReceiveContact.xaml">
139+
<SubType>Designer</SubType>
140+
<Generator>MSBuild:Compile</Generator>
141+
</Page>
142+
</ItemGroup>
143+
<ItemGroup>
144+
<Content Include="..\..\..\SharedContent\cs\Default.rd.xml">
145+
<Link>Properties\Default.rd.xml</Link>
146+
</Content>
147+
<Content Include="..\..\..\SharedContent\media\microsoft-sdk.png">
148+
<Link>Assets\microsoft-sdk.png</Link>
149+
</Content>
150+
<Content Include="..\..\..\SharedContent\media\smalltile-sdk.png">
151+
<Link>Assets\smallTile-sdk.png</Link>
152+
</Content>
153+
<Content Include="..\..\..\SharedContent\media\splash-sdk.png">
154+
<Link>Assets\splash-sdk.png</Link>
155+
</Content>
156+
<Content Include="..\..\..\SharedContent\media\squaretile-sdk.png">
157+
<Link>Assets\squareTile-sdk.png</Link>
158+
</Content>
159+
<Content Include="..\..\..\SharedContent\media\storelogo-sdk.png">
160+
<Link>Assets\storeLogo-sdk.png</Link>
161+
</Content>
162+
<Content Include="..\..\..\SharedContent\media\tile-sdk.png">
163+
<Link>Assets\tile-sdk.png</Link>
164+
</Content>
165+
<Content Include="..\..\..\SharedContent\media\windows-sdk.png">
166+
<Link>Assets\windows-sdk.png</Link>
167+
</Content>
168+
</ItemGroup>
169+
<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' &lt; '14.0' ">
170+
<VisualStudioVersion>14.0</VisualStudioVersion>
171+
</PropertyGroup>
172+
<Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" />
173+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
174+
Other similar extension points exist, see Microsoft.Common.targets.
175+
<Target Name="BeforeBuild">
176+
</Target>
177+
<Target Name="AfterBuild">
178+
</Target>
179+
-->
180+
</Project>
Lines changed: 40 additions & 0 deletions
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.23107.0
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ContactCardIntegration", "ContactCardIntegration.csproj", "{DC30CE66-DAEE-4CCF-BD02-8837FE918B6F}"
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+
{DC30CE66-DAEE-4CCF-BD02-8837FE918B6F}.Debug|ARM.ActiveCfg = Debug|ARM
19+
{DC30CE66-DAEE-4CCF-BD02-8837FE918B6F}.Debug|ARM.Build.0 = Debug|ARM
20+
{DC30CE66-DAEE-4CCF-BD02-8837FE918B6F}.Debug|ARM.Deploy.0 = Debug|ARM
21+
{DC30CE66-DAEE-4CCF-BD02-8837FE918B6F}.Debug|x64.ActiveCfg = Debug|x64
22+
{DC30CE66-DAEE-4CCF-BD02-8837FE918B6F}.Debug|x64.Build.0 = Debug|x64
23+
{DC30CE66-DAEE-4CCF-BD02-8837FE918B6F}.Debug|x64.Deploy.0 = Debug|x64
24+
{DC30CE66-DAEE-4CCF-BD02-8837FE918B6F}.Debug|x86.ActiveCfg = Debug|x86
25+
{DC30CE66-DAEE-4CCF-BD02-8837FE918B6F}.Debug|x86.Build.0 = Debug|x86
26+
{DC30CE66-DAEE-4CCF-BD02-8837FE918B6F}.Debug|x86.Deploy.0 = Debug|x86
27+
{DC30CE66-DAEE-4CCF-BD02-8837FE918B6F}.Release|ARM.ActiveCfg = Release|ARM
28+
{DC30CE66-DAEE-4CCF-BD02-8837FE918B6F}.Release|ARM.Build.0 = Release|ARM
29+
{DC30CE66-DAEE-4CCF-BD02-8837FE918B6F}.Release|ARM.Deploy.0 = Release|ARM
30+
{DC30CE66-DAEE-4CCF-BD02-8837FE918B6F}.Release|x64.ActiveCfg = Release|x64
31+
{DC30CE66-DAEE-4CCF-BD02-8837FE918B6F}.Release|x64.Build.0 = Release|x64
32+
{DC30CE66-DAEE-4CCF-BD02-8837FE918B6F}.Release|x64.Deploy.0 = Release|x64
33+
{DC30CE66-DAEE-4CCF-BD02-8837FE918B6F}.Release|x86.ActiveCfg = Release|x86
34+
{DC30CE66-DAEE-4CCF-BD02-8837FE918B6F}.Release|x86.Build.0 = Release|x86
35+
{DC30CE66-DAEE-4CCF-BD02-8837FE918B6F}.Release|x86.Deploy.0 = Release|x86
36+
EndGlobalSection
37+
GlobalSection(SolutionProperties) = preSolution
38+
HideSolutionNode = FALSE
39+
EndGlobalSection
40+
EndGlobal

0 commit comments

Comments
 (0)