├── Samples ├── Logging │ ├── js │ │ ├── css │ │ │ └── placeholder.txt │ │ ├── images │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ └── js │ │ │ └── en-US │ │ │ └── placeholder.txt │ ├── cpp │ │ └── pch.cpp │ └── cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── OCR │ ├── js │ │ ├── images │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ └── js │ │ │ └── en-US │ │ │ └── placeholder.txt │ └── cpp │ │ └── pch.cpp ├── Unicode │ ├── js │ │ ├── css │ │ │ └── placeholder.txt │ │ ├── images │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ └── js │ │ │ └── en-US │ │ │ └── placeholder.txt │ ├── cpp │ │ └── pch.cpp │ └── cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── Clipboard │ ├── js │ │ ├── css │ │ │ └── placeholder.txt │ │ ├── images │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ └── js │ │ │ └── en-US │ │ │ └── placeholder.txt │ └── cpp │ │ └── pch.cpp ├── EasProtocol │ ├── js │ │ ├── css │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ └── js │ │ │ └── en-us │ │ │ └── placeholder.txt │ └── cpp │ │ └── pch.cpp ├── FileAccess │ ├── js │ │ ├── css │ │ │ └── placeholder.txt │ │ ├── images │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ └── js │ │ │ └── en-US │ │ │ └── placeholder.txt │ ├── cpp │ │ └── pch.cpp │ └── cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── FilePicker │ ├── js │ │ ├── css │ │ │ └── placeholder.txt │ │ ├── images │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ └── js │ │ │ └── en-US │ │ │ └── placeholder.txt │ └── cpp │ │ └── pch.cpp ├── FileSearch │ ├── js │ │ ├── css │ │ │ └── placeholder.txt │ │ ├── images │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ └── js │ │ │ └── en-US │ │ │ └── placeholder.txt │ └── cpp │ │ └── pch.cpp ├── Geotag │ ├── js │ │ ├── images │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ ├── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ │ └── placeholder │ │ │ └── js │ │ │ │ └── en-us │ │ │ │ └── placeholder.txt │ │ └── css │ │ │ └── scenario1.css │ ├── cpp │ │ └── pch.cpp │ └── cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── HomeGroup │ ├── js │ │ ├── css │ │ │ └── placeholder.txt │ │ ├── images │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ └── js │ │ │ └── en-US │ │ │ └── placeholder.txt │ ├── cpp │ │ └── pch.cpp │ └── cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── IndexedDB │ └── js │ │ ├── css │ │ └── placeholder.txt │ │ ├── images │ │ └── placeholder.txt │ │ ├── sample-utils │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ ├── fonts │ │ └── placeholder │ │ ├── css │ │ └── placeholder.txt │ │ └── js │ │ └── en-us │ │ └── placeholder.txt ├── Ink │ └── js │ │ ├── sample-utils │ │ └── placeholder.txt │ │ ├── Microsoft.WinJS.4.0 │ │ ├── fonts │ │ │ └── placeholder │ │ ├── css │ │ │ └── placeholder.txt │ │ └── js │ │ │ └── en-US │ │ │ └── placeholder.txt │ │ └── images │ │ ├── Erase.cur │ │ └── Select.png ├── Package │ ├── js │ │ ├── images │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ └── placeholder.txt │ │ │ └── js │ │ │ └── en-US │ │ │ └── placeholder.txt │ └── cpp │ │ └── pch.cpp ├── SmartCard │ ├── js │ │ ├── css │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ └── js │ │ │ └── en-us │ │ │ └── placeholder.txt │ └── cpp │ │ └── pch.cpp ├── StreamSocket │ ├── js │ │ ├── css │ │ │ └── placeholder.txt │ │ ├── images │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ └── js │ │ │ └── en-US │ │ │ └── placeholder.txt │ └── cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── TitleBar │ ├── js │ │ ├── css │ │ │ └── placeholder.txt │ │ ├── images │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ ├── Microsoft.WinJS.4.0 │ │ │ ├── fonts │ │ │ │ └── placeholder │ │ │ ├── css │ │ │ │ └── placeholder.txt │ │ │ └── js │ │ │ │ └── en-US │ │ │ │ └── placeholder.txt │ │ └── CoreViewHelpers │ │ │ ├── pch.cpp │ │ │ └── pch.h │ ├── cpp │ │ └── pch.cpp │ └── cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── WebSocket │ ├── js │ │ ├── images │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ ├── Microsoft.WinJS.4.0 │ │ │ ├── fonts │ │ │ │ └── placeholder │ │ │ ├── css │ │ │ │ └── placeholder.txt │ │ │ └── js │ │ │ │ └── en-US │ │ │ │ └── placeholder.txt │ │ └── css │ │ │ ├── scenario1_Download.css │ │ │ └── scenario2_Upload.css │ └── cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── WebView │ └── js │ │ ├── images │ │ └── placeholder.txt │ │ ├── sample-utils │ │ └── placeholder.txt │ │ ├── Microsoft.WinJS.4.0 │ │ ├── css │ │ │ └── placeholder.txt │ │ ├── fonts │ │ │ └── placeholder │ │ └── js │ │ │ └── en-us │ │ │ └── placeholder.txt │ │ ├── WinRTComponent │ │ ├── pch.cpp │ │ └── pch.h │ │ └── css │ │ ├── 3_NavToState.css │ │ ├── 4_NavToStream.css │ │ └── 7_SupportShare.css ├── WebWorkers │ └── js │ │ ├── css │ │ └── placeholder.txt │ │ ├── images │ │ └── placeholder.txt │ │ ├── sample-utils │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ ├── css │ │ └── placeholder.txt │ │ ├── fonts │ │ └── placeholder │ │ └── js │ │ └── en-us │ │ └── placeholder.txt ├── WiFiDirect │ ├── js │ │ ├── css │ │ │ └── placeholder.txt │ │ ├── images │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ └── js │ │ │ └── en-US │ │ │ └── placeholder.txt │ ├── README.md │ └── cpp │ │ └── pch.cpp ├── XmlDocument │ ├── js │ │ ├── css │ │ │ └── placeholder.txt │ │ ├── images │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ ├── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ │ └── placeholder │ │ │ └── js │ │ │ │ └── en-us │ │ │ │ └── placeholder.txt │ │ └── loadExternaldtd │ │ │ └── dtd.txt │ └── cs │ │ └── loadExternaldtd │ │ └── dtd.txt ├── AnimationMetrics │ ├── js │ │ ├── css │ │ │ └── placeholder.txt │ │ ├── images │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ └── js │ │ │ └── en-us │ │ │ └── placeholder.txt │ └── cpp │ │ └── pch.cpp ├── BarcodeScanner │ ├── js │ │ ├── images │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ └── js │ │ │ └── en-us │ │ │ └── placeholder.txt │ ├── cpp │ │ └── pch.cpp │ └── cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── CashDrawer │ ├── js │ │ ├── images │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ └── js │ │ │ └── en-us │ │ │ └── placeholder.txt │ ├── cpp │ │ └── pch.cpp │ └── cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── Compass │ ├── js │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ └── js │ │ │ └── en-us │ │ │ └── placeholder.txt │ └── cpp │ │ └── pch.cpp ├── Compression │ ├── js │ │ ├── images │ │ │ └── placeholder.txt │ │ ├── css │ │ │ ├── object.css │ │ │ └── stream.css │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ └── js │ │ │ └── en-US │ │ │ └── placeholder.txt │ └── cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── ContentIndexer │ ├── js │ │ ├── css │ │ │ └── placeholder.txt │ │ ├── images │ │ │ └── placeholder.txt │ │ ├── appcontent-ms │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ └── js │ │ │ └── en-US │ │ │ └── placeholder.txt │ └── cpp │ │ └── pch.cpp ├── CredentialPicker │ ├── js │ │ ├── css │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ └── js │ │ │ └── en-us │ │ │ └── placeholder.txt │ └── cpp │ │ └── pch.cpp ├── DatagramSocket │ ├── js │ │ ├── css │ │ │ └── placeholder.txt │ │ ├── images │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ └── js │ │ │ └── en-US │ │ │ └── placeholder.txt │ └── cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── DeviceEnumeration │ ├── js │ │ ├── css │ │ │ └── placeholder.txt │ │ ├── images │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ └── js │ │ │ └── en-US │ │ │ └── placeholder.txt │ └── cpp │ │ ├── BackgroundDeviceWatcherTaskCpp │ │ └── pch.cpp │ │ └── DeviceEnumerationCpp │ │ └── pch.cpp ├── FileThumbnails │ ├── js │ │ ├── css │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ └── js │ │ │ └── en-US │ │ │ └── placeholder.txt │ └── cpp │ │ └── pch.cpp ├── FolderEnumeration │ ├── js │ │ ├── css │ │ │ └── placeholder.txt │ │ ├── images │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ └── js │ │ │ └── en-us │ │ │ └── placeholder.txt │ └── cpp │ │ └── pch.cpp ├── FullScreenMode │ ├── js │ │ ├── css │ │ │ └── placeholder.txt │ │ ├── images │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ └── js │ │ │ └── en-US │ │ │ └── placeholder.txt │ ├── cpp │ │ └── pch.cpp │ └── cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── LanguageFont │ ├── js │ │ ├── images │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ └── placeholder.txt │ │ │ └── js │ │ │ └── en-US │ │ │ └── placeholder.txt │ └── cpp │ │ ├── MainPage.xaml │ │ └── pch.cpp ├── MediaEditing │ ├── js │ │ ├── images │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ ├── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ │ └── placeholder │ │ │ └── js │ │ │ │ └── en-US │ │ │ │ └── placeholder.txt │ │ └── css │ │ │ └── scenario1.css │ └── cpp │ │ └── pch.cpp ├── MessageDialog │ ├── js │ │ ├── css │ │ │ └── placeholder.txt │ │ ├── images │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ └── js │ │ │ └── en-US │ │ │ └── placeholder.txt │ └── cpp │ │ └── pch.cpp ├── MsBlobBuilder │ └── js │ │ ├── images │ │ └── placeholder.txt │ │ ├── sample-utils │ │ └── placeholder.txt │ │ ├── Microsoft.WinJS.4.0 │ │ ├── fonts │ │ │ └── placeholder │ │ ├── css │ │ │ └── placeholder.txt │ │ └── js │ │ │ └── en-us │ │ │ └── placeholder.txt │ │ └── css │ │ └── XhrBlobSaveToDisk.css ├── NumberFormatting │ ├── js │ │ ├── css │ │ │ └── placeholder.txt │ │ ├── images │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ └── js │ │ │ └── en-us │ │ │ └── placeholder.txt │ ├── cpp │ │ └── pch.cpp │ └── cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── PasswordVault │ ├── js │ │ ├── css │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ └── js │ │ │ └── en-us │ │ │ └── placeholder.txt │ └── cpp │ │ └── pch.cpp ├── Personalization │ ├── js │ │ ├── css │ │ │ └── placeholder.txt │ │ ├── images │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ └── js │ │ │ └── en-US │ │ │ └── placeholder.txt │ └── cpp │ │ └── pch.cpp ├── PosPrinter │ ├── js │ │ ├── images │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ └── js │ │ │ └── en-us │ │ │ └── placeholder.txt │ ├── cpp │ │ └── pch.cpp │ └── cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── Printing │ ├── js │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ ├── Microsoft.WinJS.4.0 │ │ │ ├── fonts │ │ │ │ └── placeholder │ │ │ ├── css │ │ │ │ └── placeholder.txt │ │ │ └── js │ │ │ │ └── en-US │ │ │ │ └── placeholder.txt │ │ └── images │ │ │ └── print_1.png │ ├── cpp │ │ ├── pch.cpp │ │ └── Assets │ │ │ └── print_1.png │ └── cs │ │ ├── Assets │ │ └── print_1.png │ │ └── Properties │ │ └── AssemblyInfo.cs ├── Projection │ ├── js │ │ ├── images │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ ├── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ │ └── placeholder.txt │ │ │ └── js │ │ │ │ └── en-US │ │ │ │ └── placeholder.txt │ │ └── css │ │ │ ├── scenario2.css │ │ │ └── scenario1.css │ ├── cpp │ │ ├── pch.cpp │ │ └── Assets │ │ │ ├── tile-sdk.png │ │ │ ├── splash-sdk.png │ │ │ ├── windows-sdk.png │ │ │ ├── microsoft-sdk.png │ │ │ ├── smallTile-sdk.png │ │ │ └── storeLogo-sdk.png │ └── cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── ResizeAppView │ ├── js │ │ ├── css │ │ │ └── placeholder.txt │ │ ├── images │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ └── js │ │ │ └── en-US │ │ │ └── placeholder.txt │ ├── cpp │ │ └── pch.cpp │ └── cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── SemanticTextQuery │ ├── js │ │ ├── css │ │ │ └── placeholder.txt │ │ ├── images │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ └── js │ │ │ └── en-US │ │ │ └── placeholder.txt │ └── cpp │ │ └── pch.cpp ├── SimpleImaging │ └── js │ │ ├── images │ │ └── placeholder.txt │ │ ├── sample-utils │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ ├── css │ │ └── placeholder.txt │ │ └── js │ │ └── en-US │ │ └── placeholder.txt ├── TextSegmentation │ ├── js │ │ ├── css │ │ │ └── placeholder.txt │ │ ├── images │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ └── js │ │ │ └── en-us │ │ │ └── placeholder.txt │ ├── cpp │ │ └── pch.cpp │ └── cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── TextSuggestion │ ├── js │ │ ├── images │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ ├── Microsoft.WinJS.4.0 │ │ │ ├── fonts │ │ │ │ └── placeholder │ │ │ ├── css │ │ │ │ └── placeholder.txt │ │ │ └── js │ │ │ │ └── en-US │ │ │ │ └── placeholder.txt │ │ └── css │ │ │ └── Scenario1_Conversion.css │ ├── cpp │ │ └── pch.cpp │ └── cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── UserSelection │ └── js │ │ ├── images │ │ └── placeholder.txt │ │ ├── sample-utils │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ ├── fonts │ │ └── placeholder │ │ ├── css │ │ └── placeholder.txt │ │ └── js │ │ └── en-us │ │ └── placeholder.txt ├── VideoPlayback │ ├── js │ │ ├── images │ │ │ └── placeholder.txt │ │ ├── assets │ │ │ └── media │ │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ ├── Microsoft.WinJS.4.0 │ │ │ ├── fonts │ │ │ │ └── placeholder │ │ │ ├── css │ │ │ │ └── placeholder.txt │ │ │ └── js │ │ │ │ └── en-US │ │ │ │ └── placeholder.txt │ │ └── css │ │ │ ├── scenario4.css │ │ │ ├── scenario5.css │ │ │ └── scenario1.css │ └── common │ │ └── Assets │ │ └── Media │ │ ├── sintel.jpg │ │ └── multivideo.jpg ├── Accelerometer │ └── js │ │ ├── sample-utils │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ ├── fonts │ │ └── placeholder │ │ ├── css │ │ └── placeholder.txt │ │ └── js │ │ └── en-us │ │ └── placeholder.txt ├── AccountPictureName │ ├── js │ │ ├── css │ │ │ └── placeholder.txt │ │ ├── images │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ └── js │ │ │ └── en-US │ │ │ └── placeholder.txt │ └── cpp │ │ └── pch.cpp ├── AdaptiveStreaming │ └── js │ │ ├── images │ │ └── placeholder.txt │ │ ├── sample-utils │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ ├── css │ │ └── placeholder.txt │ │ ├── fonts │ │ └── placeholder │ │ └── js │ │ └── en-us │ │ └── placeholder.txt ├── Altimeter │ ├── js │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ └── js │ │ │ └── en-us │ │ │ └── placeholder.txt │ └── cpp │ │ └── pch.cpp ├── AnimationLibrary │ └── js │ │ ├── images │ │ └── placeholder.txt │ │ ├── sample-utils │ │ └── placeholder.txt │ │ ├── Microsoft.WinJS.4.0 │ │ ├── css │ │ │ └── placeholder.txt │ │ ├── fonts │ │ │ └── placeholder │ │ └── js │ │ │ └── en-us │ │ │ └── placeholder.txt │ │ └── css │ │ └── filterSearchList.css ├── Barometer │ ├── js │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ └── js │ │ │ └── en-us │ │ │ └── placeholder.txt │ └── cpp │ │ └── pch.cpp ├── BasicFaceDetection │ └── cs │ │ ├── Assets │ │ └── placeholder.txt │ │ ├── Styles │ │ └── placeholder.txt │ │ └── Properties │ │ └── AssemblyInfo.cs ├── BasicFaceTracking │ └── cs │ │ ├── Assets │ │ └── placeholder.txt │ │ ├── Styles │ │ └── placeholder.txt │ │ └── Properties │ │ └── AssemblyInfo.cs ├── CameraProfile │ └── js │ │ ├── sample-utils │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ ├── fonts │ │ └── placeholder │ │ ├── css │ │ └── placeholder.txt │ │ └── js │ │ └── en-us │ │ └── placeholder.txt ├── CameraStarterKit │ └── js │ │ └── WinJS │ │ ├── css │ │ └── placeholder.txt │ │ ├── fonts │ │ └── placeholder.txt │ │ └── js │ │ └── en-us │ │ └── placeholder.txt ├── ContextMenu │ ├── js │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ ├── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ │ └── placeholder │ │ │ └── js │ │ │ │ └── en-US │ │ │ │ └── placeholder.txt │ │ └── images │ │ │ └── placeholder-sdk.png │ └── cpp │ │ └── pch.cpp ├── CustomSensors │ ├── js │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ └── js │ │ │ └── en-us │ │ │ └── placeholder.txt │ └── cpp │ │ └── pch.cpp ├── DpiScaling │ ├── js │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ └── js │ │ │ └── en-US │ │ │ └── placeholder.txt │ ├── cpp │ │ └── pch.cpp │ └── cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── EfficientAnimations │ └── js │ │ ├── css │ │ └── placeholder.txt │ │ ├── sample-utils │ │ └── placeholder.txt │ │ ├── Microsoft.WinJS.4.0 │ │ ├── fonts │ │ │ └── placeholder │ │ ├── css │ │ │ └── placeholder.txt │ │ └── js │ │ │ └── en-us │ │ │ └── placeholder.txt │ │ └── images │ │ ├── hour.png │ │ ├── minute.png │ │ ├── second.png │ │ └── fancyclock.png ├── Gyrometer │ ├── js │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ └── js │ │ │ └── en-us │ │ │ └── placeholder.txt │ └── cpp │ │ └── pch.cpp ├── HtmlFormValidation │ └── js │ │ ├── images │ │ └── placeholder.txt │ │ ├── sample-utils │ │ └── placeholder.txt │ │ ├── Microsoft.WinJS.4.0 │ │ ├── fonts │ │ │ └── placeholder │ │ ├── css │ │ │ └── placeholder.txt │ │ └── js │ │ │ └── en-us │ │ │ └── placeholder.txt │ │ └── css │ │ ├── scenario3.css │ │ └── scenario4.css ├── Inclinometer │ ├── js │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ └── js │ │ │ └── en-us │ │ │ └── placeholder.txt │ └── cpp │ │ └── pch.cpp ├── LampDevice │ └── js │ │ ├── sample-utils │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ ├── css │ │ └── placeholder.txt │ │ ├── fonts │ │ └── placeholder │ │ └── js │ │ └── en-us │ │ └── placeholder.txt ├── LibraryManagement │ ├── js │ │ ├── images │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ └── js │ │ │ └── en-US │ │ │ └── placeholder.txt │ └── cpp │ │ └── pch.cpp ├── LightSensor │ ├── js │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ └── js │ │ │ └── en-us │ │ │ └── placeholder.txt │ └── cpp │ │ └── pch.cpp ├── MediaTranscoding │ ├── js │ │ ├── images │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ ├── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ │ └── placeholder │ │ │ └── js │ │ │ │ └── en-US │ │ │ │ └── placeholder.txt │ │ └── css │ │ │ └── scenario1.css │ └── cpp │ │ └── pch.cpp ├── ShareSource │ ├── js │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ ├── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ │ └── placeholder │ │ │ └── js │ │ │ │ └── en-US │ │ │ │ └── placeholder.txt │ │ └── images │ │ │ └── dev-center_branding.png │ └── cpp │ │ ├── pch.cpp │ │ └── Assets │ │ ├── microsoftLogo.scale-100.png │ │ ├── microsoftLogo.scale-140.png │ │ └── microsoftLogo.scale-180.png ├── SimpleCommunication │ ├── js │ │ ├── images │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── microsoft.winjs.4.0 │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ └── placeholder.txt │ │ │ └── js │ │ │ └── en-us │ │ │ └── placeholder.txt │ └── cpp │ │ └── pch.cpp ├── UserConsentVerifier │ ├── js │ │ ├── css │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ └── js │ │ │ └── en-us │ │ │ └── placeholder.txt │ └── cpp │ │ └── pch.cpp ├── UserDataAccountManager │ ├── js │ │ ├── css │ │ │ └── placeholder.txt │ │ ├── images │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ └── js │ │ │ └── en-US │ │ │ └── placeholder.txt │ └── cpp │ │ └── pch.cpp ├── UserInteractionMode │ ├── js │ │ ├── images │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ └── js │ │ │ └── en-US │ │ │ └── placeholder.txt │ ├── cpp │ │ └── pch.cpp │ └── cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── ApplicationResources │ ├── js │ │ ├── images │ │ │ ├── ja │ │ │ │ └── placeholder.txt │ │ │ └── en-US │ │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ ├── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ │ └── placeholder.txt │ │ │ └── js │ │ │ │ └── en-US │ │ │ │ └── placeholder.txt │ │ └── strings │ │ │ ├── scenario13 │ │ │ ├── scenario13.resjson │ │ │ ├── scenario13.lang-fr.resjson │ │ │ ├── scenario13.homeregion-001.resjson │ │ │ ├── scenario13.homeregion-021.resjson │ │ │ ├── scenario13.lang-en.resjson │ │ │ ├── scenario13.contrast-high.resjson │ │ │ ├── scenario13.contrast-standard.resjson │ │ │ ├── scenario13.homeregion-us.resjson │ │ │ ├── scenario13.lang-fr-fr.resjson │ │ │ ├── scenario13.contrast-black_scale-100.resjson │ │ │ ├── scenario13.contrast-black_scale-140.resjson │ │ │ ├── scenario13.contrast-black_scale-180.resjson │ │ │ ├── scenario13.contrast-white_scale-100.resjson │ │ │ ├── scenario13.contrast-white_scale-140.resjson │ │ │ ├── scenario13.contrast-white_scale-180.resjson │ │ │ └── scenario13.lang-en-gb.resjson │ │ │ ├── ja │ │ │ └── resources.json │ │ │ └── en-US │ │ │ └── resources.json │ ├── shared │ │ ├── appdata │ │ │ ├── appdata.dxfl-dx9.dat │ │ │ ├── appdata.dxfl-dx10.dat │ │ │ └── appdata.dxfl-dx11.dat │ │ └── images │ │ │ └── logo.scale-140.png │ └── cpp │ │ ├── pch.cpp │ │ └── scenario8.xaml.cpp ├── CameraFaceDetection │ └── js │ │ └── WinJS │ │ ├── css │ │ └── placeholder.txt │ │ ├── fonts │ │ └── placeholder.txt │ │ └── js │ │ └── en-us │ │ └── placeholder.txt ├── CameraGetPreviewFrame │ └── js │ │ └── WinJS │ │ ├── css │ │ └── placeholder.txt │ │ ├── fonts │ │ └── placeholder.txt │ │ └── js │ │ └── en-us │ │ └── placeholder.txt ├── DataReaderWriter │ ├── js │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ └── js │ │ │ └── en-us │ │ │ └── placeholder.txt │ └── cpp │ │ └── pch.cpp ├── JapanesePhoneticAnalysis │ ├── js │ │ ├── css │ │ │ └── placeholder.txt │ │ ├── images │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ └── placeholder.txt │ │ │ └── js │ │ │ └── en-US │ │ │ └── placeholder.txt │ └── cpp │ │ └── pch.cpp ├── MagneticStripeReader │ ├── js │ │ ├── images │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ └── js │ │ │ └── en-us │ │ │ └── placeholder.txt │ └── cpp │ │ └── pch.cpp ├── OrientationSensor │ ├── js │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ └── js │ │ │ └── en-us │ │ │ └── placeholder.txt │ └── cpp │ │ └── pch.cpp ├── PackagedContent │ └── js │ │ ├── sample-utils │ │ └── placeholder.txt │ │ ├── Microsoft.WinJS.4.0 │ │ ├── css │ │ │ └── placeholder.txt │ │ ├── fonts │ │ │ └── placeholder │ │ └── js │ │ │ └── en-us │ │ │ └── placeholder.txt │ │ ├── css │ │ └── navigationErrors.css │ │ └── images │ │ ├── bingLogo.png │ │ ├── msnLogo.png │ │ ├── xboxLogo.png │ │ └── officeLogo.png ├── ProximitySensor │ ├── js │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ └── js │ │ │ └── en-us │ │ │ └── placeholder.txt │ └── cpp │ │ └── pch.cpp ├── WebAuthenticationBroker │ ├── js │ │ ├── css │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ └── js │ │ │ └── en-us │ │ │ └── placeholder.txt │ └── cpp │ │ └── pch.cpp ├── AudioCategory │ └── js │ │ ├── AudioCategory │ │ ├── images │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ ├── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ │ └── placeholder.txt │ │ │ └── js │ │ │ │ └── en-US │ │ │ │ └── placeholder.txt │ │ └── css │ │ │ ├── alerts.css │ │ │ ├── gamechat.css │ │ │ ├── media.css │ │ │ ├── movie.css │ │ │ ├── other.css │ │ │ ├── speech.css │ │ │ ├── gameeffects.css │ │ │ ├── gamemedia.css │ │ │ ├── soundeffects.css │ │ │ └── communications.css │ │ └── AudioCategoryCompanion │ │ ├── css │ │ └── placeholder.txt │ │ ├── html │ │ └── placeholder.txt │ │ ├── js │ │ └── placeholder.txt │ │ ├── images │ │ └── placeholder.txt │ │ ├── sample-utils │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ ├── css │ │ └── placeholder.txt │ │ ├── fonts │ │ └── placeholder.txt │ │ └── js │ │ └── en-US │ │ └── placeholder.txt ├── BluetoothAdvertisement │ └── js │ │ ├── sample-utils │ │ └── placeholder.txt │ │ ├── Microsoft.WinJS.4.0 │ │ ├── css │ │ │ └── placeholder.txt │ │ ├── fonts │ │ │ └── placeholder │ │ └── js │ │ │ └── en-us │ │ │ └── placeholder.txt │ │ └── css │ │ ├── scenario1_Watcher.css │ │ ├── scenario2_Publisher.css │ │ ├── scenario3_BackgroundWatcher.css │ │ └── scenario4_BackgroundPublisher.css ├── CameraVideoStabilization │ └── js │ │ └── WinJS │ │ ├── css │ │ └── placeholder.txt │ │ ├── fonts │ │ └── placeholder.txt │ │ └── js │ │ └── en-us │ │ └── placeholder.txt ├── CustomUsbDeviceAccess │ └── js │ │ ├── sample-utils │ │ └── placeholder.txt │ │ ├── Microsoft.WinJS.4.0 │ │ ├── css │ │ │ └── placeholder.txt │ │ ├── fonts │ │ │ └── placeholder │ │ └── js │ │ │ └── en-us │ │ │ └── placeholder.txt │ │ └── js │ │ └── constants.js ├── FeedReader │ └── js │ │ └── Microsoft.WinJS.4.0 │ │ ├── css │ │ └── placeholder.txt │ │ ├── fonts │ │ └── placeholder │ │ └── js │ │ └── en-us │ │ └── placeholder.txt ├── HttpClient │ └── cs │ │ └── HttpFilters │ │ ├── pch.cpp │ │ └── pch.h ├── ProxyStubsForWinRTComponents │ ├── cpp │ │ ├── js │ │ │ ├── css │ │ │ │ └── placeholder.txt │ │ │ ├── sample-utils │ │ │ │ └── placeholder.txt │ │ │ └── Microsoft.WinJS.4.0 │ │ │ │ ├── css │ │ │ │ └── placeholder.txt │ │ │ │ ├── fonts │ │ │ │ └── placeholder │ │ │ │ └── js │ │ │ │ └── en-us │ │ │ │ └── placeholder.txt │ │ └── cpp │ │ │ └── pch.cpp │ └── cs │ │ ├── js │ │ ├── css │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ └── js │ │ │ └── en-us │ │ │ └── placeholder.txt │ │ └── cpp │ │ └── pch.cpp ├── RelativeInclinometer │ ├── js │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ └── js │ │ │ └── en-us │ │ │ └── placeholder.txt │ └── cpp │ │ └── pch.cpp ├── SimpleOrientationSensor │ ├── js │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ └── js │ │ │ └── en-us │ │ │ └── placeholder.txt │ └── cpp │ │ └── pch.cpp ├── SpeechRecognitionAndSynthesis │ ├── js │ │ ├── images │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ └── js │ │ │ └── en-US │ │ │ └── placeholder.txt │ └── cpp │ │ └── pch.cpp ├── SystemMediaTransportControls │ └── js │ │ ├── images │ │ └── placeholder.txt │ │ ├── sample-utils │ │ └── placeholder.txt │ │ ├── Microsoft.WinJS.4.0 │ │ ├── fonts │ │ │ └── placeholder │ │ ├── css │ │ │ └── placeholder.txt │ │ └── js │ │ │ └── en-US │ │ │ └── placeholder.txt │ │ └── css │ │ └── scenario1.css ├── WRLInProcessWinRTComponent │ └── cpp │ │ ├── js │ │ ├── css │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ └── js │ │ │ └── en-us │ │ │ └── placeholder.txt │ │ └── cpp │ │ └── pch.cpp ├── CustomSerialDeviceAccess │ └── js │ │ ├── sample-utils │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ ├── fonts │ │ └── placeholder │ │ ├── css │ │ └── placeholder.txt │ │ └── js │ │ └── en-us │ │ └── placeholder.txt ├── Geolocation │ ├── js │ │ └── geolocationjs │ │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ │ ├── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ │ └── placeholder │ │ │ └── js │ │ │ │ └── en-us │ │ │ │ └── placeholder.txt │ │ │ ├── css │ │ │ ├── scenario2_GetPosition.css │ │ │ ├── scenario1_TrackPosition.css │ │ │ └── scenario3_BackgroundTask.css │ │ │ └── images │ │ │ └── badge-logo.png │ ├── README.md │ ├── cpp │ │ └── BackgroundTask │ │ │ └── badge-logo.png │ └── cs │ │ └── BackgroundTask │ │ └── badge-logo.png ├── RelativeOrientationSensor │ ├── js │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ └── js │ │ │ └── en-us │ │ │ └── placeholder.txt │ └── cpp │ │ └── pch.cpp ├── WRLOutOfProcessWinRTComponent │ └── cpp │ │ ├── js │ │ ├── css │ │ │ └── placeholder.txt │ │ ├── sample-utils │ │ │ └── placeholder.txt │ │ └── Microsoft.WinJS.4.0 │ │ │ ├── fonts │ │ │ └── placeholder │ │ │ ├── css │ │ │ └── placeholder.txt │ │ │ └── js │ │ │ └── en-us │ │ │ └── placeholder.txt │ │ └── cpp │ │ └── pch.cpp ├── CortanaVoiceCommand │ └── js │ │ └── AdventureWorks │ │ └── Microsoft.WinJS.4.0 │ │ ├── css │ │ └── placeholder.txt │ │ ├── fonts │ │ └── placeholder.txt │ │ └── js │ │ └── en-us │ │ └── placeholder.txt ├── XamlTailoredMultipleViews │ └── cs │ │ └── TailoredMultipleViews │ │ └── DisplaySizeHelper │ │ ├── pch.cpp │ │ └── pch.h ├── BackgroundSensors │ └── cpp │ │ ├── BackgroundTask │ │ └── pch.cpp │ │ └── pch.cpp ├── WiFiDirectServices │ └── README.md ├── ComplexInk │ └── cpp │ │ ├── pch.cpp │ │ └── Scenario1_CustomDry.xaml.cpp ├── XamlBind │ └── cpp │ │ └── pch.cpp ├── XmlLite │ └── cpp │ │ └── pch.cpp ├── ActivitySensor │ └── cpp │ │ ├── pch.cpp │ │ └── Tasks │ │ ├── pch.cpp │ │ └── pch.h ├── LowLatencyInput │ └── cpp │ │ └── pch.cpp ├── MapControl │ └── cs │ │ └── Assets │ │ └── mappin.png ├── Simple3DGameDX │ └── cpp │ │ └── Assets │ │ ├── hit.wav │ │ ├── bounce.wav │ │ ├── cellwall.dds │ │ ├── seafloor.dds │ │ ├── cellfloor.dds │ │ ├── cellceiling.dds │ │ └── metal_texture.dds ├── SpatialSound │ └── cpp │ │ ├── SpatialSound.rc │ │ └── Assets │ │ └── MonoSound.wav ├── WiFiScan │ ├── cpp │ │ └── Assets │ │ │ ├── open_1bar.png │ │ │ ├── open_2bar.png │ │ │ ├── open_3bar.png │ │ │ ├── open_4bar.png │ │ │ ├── open_5bar.png │ │ │ ├── secure_1bar.png │ │ │ ├── secure_2bar.png │ │ │ ├── secure_3bar.png │ │ │ ├── secure_4bar.png │ │ │ └── secure_5bar.png │ └── cs │ │ └── Assets │ │ ├── open_1bar.png │ │ ├── open_2bar.png │ │ ├── open_3bar.png │ │ ├── open_4bar.png │ │ ├── open_5bar.png │ │ ├── secure_1bar.png │ │ ├── secure_2bar.png │ │ ├── secure_3bar.png │ │ ├── secure_4bar.png │ │ └── secure_5bar.png ├── XamlCommanding │ └── cpp │ │ └── pch.cpp ├── CustomHidDeviceAccess │ ├── cpp │ │ └── pch.cpp │ └── cs │ │ └── SampleConfiguration.cs ├── EnterpriseDataProtection │ └── README.md ├── Json │ └── cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── KeyCredentialManager │ └── cpp │ │ └── pch.cpp ├── LinguisticServices │ └── cpp │ │ └── pch.cpp ├── WebAccountManagement │ ├── cpp │ │ └── pch.cpp │ └── cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── WindowsAudioSession │ └── cpp │ │ └── pch.cpp ├── LockScreenApps │ └── cs │ │ └── Images │ │ ├── tile-sdk.png │ │ ├── splash-sdk.png │ │ ├── windows-sdk.png │ │ ├── badgelogo-sdk.png │ │ ├── microsoft-sdk.png │ │ ├── smallTile-sdk.png │ │ ├── squareTile-sdk.png │ │ ├── storeLogo-sdk.png │ │ └── placeholder-sdk.png ├── PhoneCall │ └── cs │ │ └── Assets │ │ └── defaultContact.png ├── SerialArduino │ ├── sketch │ │ └── SerialCommand.fzz │ └── cs │ │ └── Scenario2_LEDTemp.xaml.cs ├── Simple3DGameXaml │ └── cpp │ │ ├── FullLicense.xml │ │ ├── TrialLicense.xml │ │ └── Assets │ │ ├── dayfloor.dds │ │ ├── daywall.dds │ │ ├── nightfloor.dds │ │ └── nightwall.dds ├── XamlStateTriggers │ └── cs │ │ └── Assets │ │ ├── avatar.png │ │ ├── Logo.scale-100.png │ │ └── WideLogo.scale-100.png ├── XamlTransform3DParallax │ └── cpp │ │ └── pch.cpp ├── XamlNavigation │ ├── cpp │ │ ├── pch.cpp │ │ └── Assets │ │ │ └── StoreLogo.scale-100.png │ └── cs │ │ └── Assets │ │ └── StoreLogo.scale-100.png ├── ApplicationData │ └── cs │ │ └── Assets │ │ ├── appDataLocal.png │ │ ├── appDataTemp.png │ │ └── appDataRoaming.png ├── SplashScreen │ └── cs │ │ └── Assets │ │ ├── mediumtile-sdk.png │ │ ├── splash-Phone-sdk.png │ │ ├── splash-Windows-sdk.png │ │ └── smalltile-Phone-sdk.png ├── XamlFocusVisuals │ └── cs │ │ └── Assets │ │ └── yammer_share.PNG ├── XamlMasterDetail │ └── cpp │ │ └── pch.cpp ├── XamlPullToRefresh │ └── cs │ │ └── Assets │ │ ├── InnerCircle.png │ │ └── OuterCircle.png ├── XamlUIBasics │ └── cs │ │ └── AppUIBasics │ │ └── Assets │ │ ├── Grid.png │ │ ├── Hub.png │ │ ├── AppBar.png │ │ ├── Border.png │ │ ├── Button.png │ │ ├── Canvas.png │ │ ├── Flyout.png │ │ ├── Image.png │ │ ├── Pivot.png │ │ ├── Slices.png │ │ ├── Slider.png │ │ ├── CheckBox.png │ │ ├── ComboBox.png │ │ ├── DarkGray.png │ │ ├── FlipView.png │ │ ├── GridView.png │ │ ├── InkCanvas.png │ │ ├── LightGray.png │ │ ├── ListBox.png │ │ ├── ListView.png │ │ ├── Slices2.png │ │ ├── SplitView.png │ │ ├── TextBlock.png │ │ ├── TextBox.png │ │ ├── ToolTip.png │ │ ├── ViewBox.png │ │ ├── ninegrid.gif │ │ ├── CommandBar.png │ │ ├── DatePicker.png │ │ ├── MediumGray.png │ │ ├── MenuFlyout.png │ │ ├── PasswordBox.png │ │ ├── ProgressBar.png │ │ ├── RadioButton.png │ │ ├── RichEditBox.png │ │ ├── StackPanel.png │ │ └── TimePicker.png ├── AdvancedCasting │ └── cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── Notifications │ └── cs │ │ ├── BackgroundTasks │ │ └── Helpers │ │ │ └── BadgeHelper.cs │ │ └── Notifications │ │ └── Assets │ │ ├── cancel.png │ │ └── check.png ├── XamlDeferLoadStrategy │ └── cs │ │ └── Assets │ │ └── Icons │ │ ├── email.png │ │ ├── gmail.png │ │ ├── yahoo.png │ │ └── outlook.png └── XamlResponsiveTechniques │ └── cs │ └── Assets │ ├── Background.png │ ├── Background2.png │ ├── Background3.png │ ├── Background4.png │ └── Background5.png └── SharedContent ├── cs └── AssemblyInfo.cs ├── media ├── tile-sdk.png ├── splash-sdk.png ├── windows-sdk.png ├── Samples │ ├── Ring01.jpg │ ├── Ring01.wma │ ├── Ring02.jpg │ ├── Ring02.wma │ ├── cliff.jpg │ ├── fishes.wmv │ ├── grapes.jpg │ ├── mobius.png │ ├── sunset.jpg │ ├── valley.jpg │ ├── HeroImage.png │ ├── casting.mp4 │ ├── ladybug.wmv │ ├── rainier.jpg │ ├── treetops.jpg │ ├── Ring03Part1.jpg │ ├── Ring03Part1.wma │ ├── Ring03Part2.jpg │ ├── Ring03Part2.wma │ ├── Ring03Part3.jpg │ ├── Ring03Part3.wma │ ├── LandscapeImage1.jpg │ ├── LandscapeImage10.jpg │ ├── LandscapeImage11.jpg │ ├── LandscapeImage12.jpg │ ├── LandscapeImage13.jpg │ ├── LandscapeImage14.jpg │ ├── LandscapeImage15.jpg │ ├── LandscapeImage16.jpg │ ├── LandscapeImage17.jpg │ ├── LandscapeImage18.jpg │ ├── LandscapeImage19.jpg │ ├── LandscapeImage2.jpg │ ├── LandscapeImage20.jpg │ ├── LandscapeImage21.jpg │ ├── LandscapeImage22.jpg │ ├── LandscapeImage23.jpg │ ├── LandscapeImage24.jpg │ ├── LandscapeImage25.jpg │ ├── LandscapeImage3.jpg │ ├── LandscapeImage4.jpg │ ├── LandscapeImage5.jpg │ ├── LandscapeImage6.jpg │ ├── LandscapeImage7.jpg │ ├── LandscapeImage8.jpg │ ├── LandscapeImage9.jpg │ ├── grapes_background.jpg │ └── rainier_background.jpg ├── microsoft-sdk.png ├── smalltile-sdk.png ├── squaretile-sdk.png ├── storelogo-sdk.png └── placeholder-sdk.png └── js └── Microsoft.WinJS └── fonts └── Symbols.ttf /Samples/Logging/js/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/OCR/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Unicode/js/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Clipboard/js/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Clipboard/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/EasProtocol/js/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/FileAccess/js/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/FilePicker/js/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/FileSearch/js/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Geotag/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/HomeGroup/js/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/HomeGroup/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/IndexedDB/js/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/IndexedDB/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Ink/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Logging/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/OCR/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Package/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SmartCard/js/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/StreamSocket/js/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/TitleBar/js/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/TitleBar/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Unicode/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/WebSocket/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/WebView/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/WebWorkers/js/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/WiFiDirect/js/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/XmlDocument/js/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/AnimationMetrics/js/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/BarcodeScanner/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/CashDrawer/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Compass/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Compression/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ContentIndexer/js/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ContentIndexer/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/CredentialPicker/js/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/DatagramSocket/js/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/DatagramSocket/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/DeviceEnumeration/js/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/FileAccess/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/FilePicker/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/FileSearch/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/FileThumbnails/js/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/FolderEnumeration/js/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/FullScreenMode/js/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/FullScreenMode/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Geotag/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/LanguageFont/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Logging/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/MediaEditing/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/MessageDialog/js/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/MessageDialog/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/MsBlobBuilder/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/NumberFormatting/js/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Package/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/PasswordVault/js/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Personalization/js/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/PosPrinter/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Printing/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Projection/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ResizeAppView/js/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ResizeAppView/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SemanticTextQuery/js/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SimpleImaging/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/StreamSocket/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/TextSegmentation/js/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/TextSuggestion/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/TitleBar/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Unicode/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/UserSelection/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/VideoPlayback/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/WebView/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/WebWorkers/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/WiFiDirect/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/XmlDocument/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Accelerometer/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/AccountPictureName/js/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/AccountPictureName/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/AdaptiveStreaming/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Altimeter/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/AnimationLibrary/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/AnimationMetrics/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Barometer/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/BasicFaceDetection/cs/Assets/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/BasicFaceDetection/cs/Styles/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/BasicFaceTracking/cs/Assets/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/BasicFaceTracking/cs/Styles/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/CameraProfile/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/CameraStarterKit/js/WinJS/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/CashDrawer/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Clipboard/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Compression/js/css/object.css: -------------------------------------------------------------------------------- 1 | /* styles */ -------------------------------------------------------------------------------- /Samples/Compression/js/css/stream.css: -------------------------------------------------------------------------------- 1 | /* styles */ -------------------------------------------------------------------------------- /Samples/Compression/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ContextMenu/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/CustomSensors/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/DeviceEnumeration/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/DpiScaling/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/EasProtocol/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/EfficientAnimations/js/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/FileAccess/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/FilePicker/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/FileSearch/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/FolderEnumeration/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Gyrometer/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/HomeGroup/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/HtmlFormValidation/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Inclinometer/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/IndexedDB/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Ink/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/LampDevice/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/LanguageFont/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/LibraryManagement/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/LightSensor/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/MediaEditing/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/MediaTranscoding/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/MessageDialog/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/MsBlobBuilder/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/NumberFormatting/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/PasswordVault/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Personalization/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/PosPrinter/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Projection/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ResizeAppView/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SemanticTextQuery/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ShareSource/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SimpleCommunication/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SimpleImaging/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SmartCard/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/StreamSocket/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/TextSegmentation/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/UserConsentVerifier/js/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/UserDataAccountManager/js/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/UserInteractionMode/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/UserSelection/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/VideoPlayback/js/assets/media/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/VideoPlayback/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/WebSocket/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/WebWorkers/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/WiFiDirect/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/XmlDocument/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/AccountPictureName/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/AdaptiveStreaming/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Altimeter/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/AnimationLibrary/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/AnimationMetrics/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ApplicationResources/js/images/ja/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/BarcodeScanner/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Barometer/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/CameraFaceDetection/js/WinJS/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/CameraFaceDetection/js/WinJS/fonts/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/CameraGetPreviewFrame/js/WinJS/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/CameraStarterKit/js/WinJS/fonts/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/CameraStarterKit/js/WinJS/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Clipboard/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Compass/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Compass/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ContentIndexer/js/appcontent-ms/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ContentIndexer/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/CredentialPicker/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/DataReaderWriter/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/DatagramSocket/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/DeviceEnumeration/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/FileThumbnails/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/FolderEnumeration/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/FullScreenMode/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Geotag/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Geotag/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Gyrometer/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/HomeGroup/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/HtmlFormValidation/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/IndexedDB/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Ink/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/JapanesePhoneticAnalysis/js/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/JapanesePhoneticAnalysis/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/LibraryManagement/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Logging/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Logging/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/MagneticStripeReader/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/MediaTranscoding/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/NumberFormatting/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/OCR/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/OrientationSensor/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Package/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/PackagedContent/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Personalization/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Printing/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ProximitySensor/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SemanticTextQuery/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SmartCard/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/TextSegmentation/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/TextSuggestion/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/TitleBar/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Unicode/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Unicode/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/UserDataAccountManager/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/WebAuthenticationBroker/js/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/WebSocket/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/WebView/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/WebView/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Accelerometer/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Altimeter/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ApplicationResources/js/images/en-US/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ApplicationResources/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/AudioCategory/js/AudioCategory/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/BarcodeScanner/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Barometer/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/BluetoothAdvertisement/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/CameraFaceDetection/js/WinJS/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/CameraGetPreviewFrame/js/WinJS/fonts/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/CameraGetPreviewFrame/js/WinJS/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/CameraProfile/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/CameraVideoStabilization/js/WinJS/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/CameraVideoStabilization/js/WinJS/fonts/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/CashDrawer/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/CashDrawer/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Clipboard/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Compass/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Compression/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Compression/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ContentIndexer/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ContextMenu/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ContextMenu/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/CustomSensors/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/CustomUsbDeviceAccess/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/DatagramSocket/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/DpiScaling/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/DpiScaling/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/EasProtocol/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/EasProtocol/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/EfficientAnimations/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/FeedReader/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/FeedReader/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/FileAccess/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/FileAccess/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/FilePicker/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/FilePicker/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/FileSearch/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/FileSearch/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/FileThumbnails/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/FullScreenMode/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Geotag/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Gyrometer/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/HomeGroup/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/HttpClient/cs/HttpFilters/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /Samples/Inclinometer/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Inclinometer/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/IndexedDB/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Ink/js/Microsoft.WinJS.4.0/js/en-US/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/LampDevice/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/LampDevice/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/LanguageFont/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/LightSensor/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/LightSensor/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Logging/js/Microsoft.WinJS.4.0/js/en-US/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/MagneticStripeReader/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/MediaEditing/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/MediaEditing/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/MessageDialog/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/MsBlobBuilder/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/OCR/js/Microsoft.WinJS.4.0/js/en-US/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Package/js/Microsoft.WinJS.4.0/fonts/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Package/js/Microsoft.WinJS.4.0/js/en-US/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/PasswordVault/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/PosPrinter/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/PosPrinter/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Printing/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Projection/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Projection/js/Microsoft.WinJS.4.0/fonts/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ProxyStubsForWinRTComponents/cpp/js/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ProxyStubsForWinRTComponents/cs/js/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/RelativeInclinometer/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ResizeAppView/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ShareSource/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ShareSource/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SimpleCommunication/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SimpleOrientationSensor/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SmartCard/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SpeechRecognitionAndSynthesis/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/StreamSocket/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/StreamSocket/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SystemMediaTransportControls/js/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/TextSuggestion/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/TitleBar/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Unicode/js/Microsoft.WinJS.4.0/js/en-US/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/UserConsentVerifier/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/UserDataAccountManager/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/UserInteractionMode/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/UserSelection/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/VideoPlayback/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/VideoPlayback/js/css/scenario4.css: -------------------------------------------------------------------------------- 1 | body { 2 | } 3 | -------------------------------------------------------------------------------- /Samples/VideoPlayback/js/css/scenario5.css: -------------------------------------------------------------------------------- 1 | body { 2 | } 3 | -------------------------------------------------------------------------------- /Samples/WRLInProcessWinRTComponent/cpp/js/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/WebAuthenticationBroker/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/WebSocket/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/WebView/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/WebView/js/WinRTComponent/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /Samples/WebWorkers/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/WebWorkers/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/WiFiDirect/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/WiFiDirect/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/XmlDocument/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/XmlDocument/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Accelerometer/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/AccountPictureName/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/AdaptiveStreaming/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/AdaptiveStreaming/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Altimeter/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/AnimationLibrary/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/AnimationLibrary/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/AnimationMetrics/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/AnimationMetrics/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/AudioCategory/js/AudioCategory/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/AudioCategory/js/AudioCategoryCompanion/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/AudioCategory/js/AudioCategoryCompanion/html/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/AudioCategory/js/AudioCategoryCompanion/js/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/BarcodeScanner/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Barometer/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/CameraProfile/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/CameraVideoStabilization/js/WinJS/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/CashDrawer/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Clipboard/js/Microsoft.WinJS.4.0/js/en-US/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Compression/js/Microsoft.WinJS.4.0/js/en-US/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ContentIndexer/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ContextMenu/js/Microsoft.WinJS.4.0/js/en-US/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/CredentialPicker/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/CredentialPicker/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/CustomSensors/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/CustomSerialDeviceAccess/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/DataReaderWriter/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/DataReaderWriter/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/DatagramSocket/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/DeviceEnumeration/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/DeviceEnumeration/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/DpiScaling/js/Microsoft.WinJS.4.0/js/en-US/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/EasProtocol/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/EfficientAnimations/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/FeedReader/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/FileAccess/js/Microsoft.WinJS.4.0/js/en-US/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/FilePicker/js/Microsoft.WinJS.4.0/js/en-US/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/FileSearch/js/Microsoft.WinJS.4.0/js/en-US/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/FileThumbnails/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/FolderEnumeration/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/FolderEnumeration/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/FullScreenMode/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Geolocation/js/geolocationjs/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Gyrometer/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/HomeGroup/js/Microsoft.WinJS.4.0/js/en-US/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/HtmlFormValidation/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Inclinometer/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/IndexedDB/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/JapanesePhoneticAnalysis/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/LampDevice/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/LanguageFont/js/Microsoft.WinJS.4.0/fonts/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/LanguageFont/js/Microsoft.WinJS.4.0/js/en-US/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/LibraryManagement/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/LibraryManagement/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/LightSensor/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/MediaEditing/js/Microsoft.WinJS.4.0/js/en-US/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/MediaTranscoding/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/MediaTranscoding/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/MessageDialog/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/MsBlobBuilder/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/NumberFormatting/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/NumberFormatting/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/OrientationSensor/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/OrientationSensor/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/PackagedContent/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/PackagedContent/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/PasswordVault/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Personalization/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Personalization/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/PosPrinter/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Printing/js/Microsoft.WinJS.4.0/js/en-US/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Projection/js/Microsoft.WinJS.4.0/js/en-US/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ProximitySensor/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ProximitySensor/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/RelativeOrientationSensor/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ResizeAppView/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SemanticTextQuery/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SemanticTextQuery/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ShareSource/js/Microsoft.WinJS.4.0/js/en-US/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SimpleImaging/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SmartCard/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/StreamSocket/js/Microsoft.WinJS.4.0/js/en-US/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SystemMediaTransportControls/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/TextSegmentation/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/TextSegmentation/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/TextSuggestion/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/TitleBar/js/CoreViewHelpers/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /Samples/TitleBar/js/Microsoft.WinJS.4.0/js/en-US/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/UserConsentVerifier/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/UserInteractionMode/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/UserSelection/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/VideoPlayback/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/WRLOutOfProcessWinRTComponent/cpp/js/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/WebSocket/js/Microsoft.WinJS.4.0/js/en-US/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/WebWorkers/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/WiFiDirect/js/Microsoft.WinJS.4.0/js/en-US/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/XmlDocument/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Accelerometer/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/AccountPictureName/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/AdaptiveStreaming/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/AnimationLibrary/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/AnimationMetrics/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ApplicationResources/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ApplicationResources/js/Microsoft.WinJS.4.0/fonts/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/AudioCategory/js/AudioCategoryCompanion/images/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/BarcodeScanner/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/BluetoothAdvertisement/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/BluetoothAdvertisement/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/CameraProfile/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ContentIndexer/js/Microsoft.WinJS.4.0/js/en-US/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/CredentialPicker/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/CustomSensors/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/CustomSerialDeviceAccess/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/CustomUsbDeviceAccess/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/CustomUsbDeviceAccess/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/DataReaderWriter/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/DatagramSocket/js/Microsoft.WinJS.4.0/js/en-US/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/DeviceEnumeration/js/Microsoft.WinJS.4.0/js/en-US/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/EfficientAnimations/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/FileThumbnails/js/Microsoft.WinJS.4.0/js/en-US/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/FolderEnumeration/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/FullScreenMode/js/Microsoft.WinJS.4.0/js/en-US/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/HtmlFormValidation/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/LibraryManagement/js/Microsoft.WinJS.4.0/js/en-US/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/MagneticStripeReader/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/MagneticStripeReader/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/MediaTranscoding/js/Microsoft.WinJS.4.0/js/en-US/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/MessageDialog/js/Microsoft.WinJS.4.0/js/en-US/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/MsBlobBuilder/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/NumberFormatting/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/OrientationSensor/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/PackagedContent/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/PasswordVault/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Personalization/js/Microsoft.WinJS.4.0/js/en-US/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ProximitySensor/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ProxyStubsForWinRTComponents/cpp/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ProxyStubsForWinRTComponents/cs/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/RelativeInclinometer/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/RelativeInclinometer/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ResizeAppView/js/Microsoft.WinJS.4.0/js/en-US/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SemanticTextQuery/js/Microsoft.WinJS.4.0/js/en-US/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SimpleCommunication/js/microsoft.winjs.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SimpleCommunication/js/microsoft.winjs.4.0/fonts/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SimpleImaging/js/Microsoft.WinJS.4.0/js/en-US/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SimpleOrientationSensor/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SpeechRecognitionAndSynthesis/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/TextSegmentation/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/TextSuggestion/js/Microsoft.WinJS.4.0/js/en-US/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/UserConsentVerifier/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/UserDataAccountManager/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/UserDataAccountManager/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/UserInteractionMode/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/UserSelection/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/VideoPlayback/js/Microsoft.WinJS.4.0/js/en-US/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/WRLInProcessWinRTComponent/cpp/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/WRLOutOfProcessWinRTComponent/cpp/js/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/WebAuthenticationBroker/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/AccountPictureName/js/Microsoft.WinJS.4.0/js/en-US/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ApplicationResources/js/Microsoft.WinJS.4.0/js/en-US/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/AudioCategory/js/AudioCategory/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/AudioCategory/js/AudioCategoryCompanion/sample-utils/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/BluetoothAdvertisement/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/CustomSerialDeviceAccess/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/CustomUsbDeviceAccess/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/EfficientAnimations/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Geolocation/js/geolocationjs/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Geolocation/js/geolocationjs/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Geolocation/js/geolocationjs/css/scenario2_GetPosition.css: -------------------------------------------------------------------------------- 1 | /* styles */ -------------------------------------------------------------------------------- /Samples/HtmlFormValidation/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/JapanesePhoneticAnalysis/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/JapanesePhoneticAnalysis/js/Microsoft.WinJS.4.0/fonts/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/MagneticStripeReader/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/RelativeInclinometer/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/RelativeOrientationSensor/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/RelativeOrientationSensor/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SimpleCommunication/js/microsoft.winjs.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SimpleOrientationSensor/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SystemMediaTransportControls/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/UserConsentVerifier/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/UserDataAccountManager/js/Microsoft.WinJS.4.0/js/en-US/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/UserInteractionMode/js/Microsoft.WinJS.4.0/js/en-US/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/WebAuthenticationBroker/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/AudioCategory/js/AudioCategory/Microsoft.WinJS.4.0/fonts/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/AudioCategory/js/AudioCategory/Microsoft.WinJS.4.0/js/en-US/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/CustomSerialDeviceAccess/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Geolocation/js/geolocationjs/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Geolocation/js/geolocationjs/css/scenario1_TrackPosition.css: -------------------------------------------------------------------------------- 1 | /* styles */ -------------------------------------------------------------------------------- /Samples/Geolocation/js/geolocationjs/css/scenario3_BackgroundTask.css: -------------------------------------------------------------------------------- 1 | /* styles */ -------------------------------------------------------------------------------- /Samples/JapanesePhoneticAnalysis/js/Microsoft.WinJS.4.0/js/en-US/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ProxyStubsForWinRTComponents/cpp/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ProxyStubsForWinRTComponents/cpp/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ProxyStubsForWinRTComponents/cs/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ProxyStubsForWinRTComponents/cs/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/RelativeOrientationSensor/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SimpleOrientationSensor/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SpeechRecognitionAndSynthesis/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SystemMediaTransportControls/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/WRLInProcessWinRTComponent/cpp/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/WRLInProcessWinRTComponent/cpp/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/WRLOutOfProcessWinRTComponent/cpp/js/Microsoft.WinJS.4.0/fonts/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/WebAuthenticationBroker/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/AudioCategory/js/AudioCategoryCompanion/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/CortanaVoiceCommand/js/AdventureWorks/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/CortanaVoiceCommand/js/AdventureWorks/Microsoft.WinJS.4.0/fonts/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ProxyStubsForWinRTComponents/cpp/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ProxyStubsForWinRTComponents/cs/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SpeechRecognitionAndSynthesis/js/Microsoft.WinJS.4.0/js/en-US/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SystemMediaTransportControls/js/Microsoft.WinJS.4.0/js/en-US/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/WRLInProcessWinRTComponent/cpp/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/WRLOutOfProcessWinRTComponent/cpp/js/Microsoft.WinJS.4.0/css/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/AudioCategory/js/AudioCategoryCompanion/Microsoft.WinJS.4.0/fonts/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/AudioCategory/js/AudioCategoryCompanion/Microsoft.WinJS.4.0/js/en-US/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/CortanaVoiceCommand/js/AdventureWorks/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/WRLOutOfProcessWinRTComponent/cpp/js/Microsoft.WinJS.4.0/js/en-us/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ApplicationResources/shared/appdata/appdata.dxfl-dx9.dat: -------------------------------------------------------------------------------- 1 | This is data for DXFeatureLevel = DX9. -------------------------------------------------------------------------------- /Samples/ApplicationResources/shared/appdata/appdata.dxfl-dx10.dat: -------------------------------------------------------------------------------- 1 | This is data for DXFeatureLevel = DX10. -------------------------------------------------------------------------------- /Samples/ApplicationResources/shared/appdata/appdata.dxfl-dx11.dat: -------------------------------------------------------------------------------- 1 | This is data for DXFeatureLevel = DX11. -------------------------------------------------------------------------------- /Samples/XamlTailoredMultipleViews/cs/TailoredMultipleViews/DisplaySizeHelper/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /Samples/MsBlobBuilder/js/css/XhrBlobSaveToDisk.css: -------------------------------------------------------------------------------- 1 | #xhrBlobSaveToDisk input 2 | { 3 | width:500px; 4 | } -------------------------------------------------------------------------------- /Samples/TextSuggestion/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft. All rights reserved. 2 | 3 | #include "pch.h" 4 | -------------------------------------------------------------------------------- /Samples/WebView/js/css/3_NavToState.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) Microsoft Corporation. All rights reserved 3 | */ 4 | -------------------------------------------------------------------------------- /Samples/WebView/js/css/4_NavToStream.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) Microsoft Corporation. All rights reserved 3 | */ 4 | -------------------------------------------------------------------------------- /Samples/HttpClient/cs/HttpFilters/pch.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | #include 5 | -------------------------------------------------------------------------------- /Samples/TitleBar/js/CoreViewHelpers/pch.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | #include 5 | -------------------------------------------------------------------------------- /Samples/WebView/js/WinRTComponent/pch.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | #include 5 | -------------------------------------------------------------------------------- /Samples/WebView/js/css/7_SupportShare.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) Microsoft Corporation. All rights reserved 3 | */ 4 | -------------------------------------------------------------------------------- /Samples/BackgroundSensors/cpp/BackgroundTask/pch.cpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft. All rights reserved. 2 | 3 | #include "pch.h" -------------------------------------------------------------------------------- /Samples/HtmlFormValidation/js/css/scenario3.css: -------------------------------------------------------------------------------- 1 | /* styles */ 2 | .error { 3 | display:none; 4 | color:red; 5 | } -------------------------------------------------------------------------------- /Samples/WiFiDirect/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/WiFiDirect/README.md -------------------------------------------------------------------------------- /Samples/Geolocation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/Geolocation/README.md -------------------------------------------------------------------------------- /Samples/Ink/js/images/Erase.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/Ink/js/images/Erase.cur -------------------------------------------------------------------------------- /Samples/Ink/js/images/Select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/Ink/js/images/Select.png -------------------------------------------------------------------------------- /Samples/Projection/js/css/scenario2.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) Microsoft Corporation. All rights reserved 3 | */ 4 | 5 | /* styles */ -------------------------------------------------------------------------------- /SharedContent/cs/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/cs/AssemblyInfo.cs -------------------------------------------------------------------------------- /SharedContent/media/tile-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/tile-sdk.png -------------------------------------------------------------------------------- /Samples/Geotag/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/Geotag/js/css/scenario1.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) Microsoft Corporation. All rights reserved 3 | */ 4 | 5 | /* styles */ 6 | 7 | -------------------------------------------------------------------------------- /Samples/OCR/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/WiFiDirectServices/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/WiFiDirectServices/README.md -------------------------------------------------------------------------------- /SharedContent/media/splash-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/splash-sdk.png -------------------------------------------------------------------------------- /SharedContent/media/windows-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/windows-sdk.png -------------------------------------------------------------------------------- /Samples/Altimeter/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/ApplicationResources/js/strings/scenario13/scenario13.resjson: -------------------------------------------------------------------------------- 1 | { 2 | "contrastOnly" : "This is an unqualified resource" 3 | } -------------------------------------------------------------------------------- /Samples/Barometer/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/CashDrawer/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/Clipboard/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/Compass/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/ComplexInk/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/ContextMenu/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/DpiScaling/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/EasProtocol/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/FileAccess/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/FilePicker/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/FileSearch/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/Gyrometer/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/HomeGroup/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/LanguageFont/cpp/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/LanguageFont/cpp/MainPage.xaml -------------------------------------------------------------------------------- /Samples/LightSensor/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/Logging/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/Package/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/PosPrinter/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/Printing/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/Printing/cs/Assets/print_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/Printing/cs/Assets/print_1.png -------------------------------------------------------------------------------- /Samples/Printing/js/images/print_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/Printing/js/images/print_1.png -------------------------------------------------------------------------------- /Samples/Projection/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/Projection/js/css/scenario1.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) Microsoft Corporation. All rights reserved 3 | */ 4 | 5 | /* styles */ 6 | 7 | -------------------------------------------------------------------------------- /Samples/ShareSource/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/SmartCard/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/TitleBar/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/Unicode/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/WiFiDirect/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/XamlBind/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/XmlLite/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /SharedContent/media/Samples/Ring01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/Ring01.jpg -------------------------------------------------------------------------------- /SharedContent/media/Samples/Ring01.wma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/Ring01.wma -------------------------------------------------------------------------------- /SharedContent/media/Samples/Ring02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/Ring02.jpg -------------------------------------------------------------------------------- /SharedContent/media/Samples/Ring02.wma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/Ring02.wma -------------------------------------------------------------------------------- /SharedContent/media/Samples/cliff.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/cliff.jpg -------------------------------------------------------------------------------- /SharedContent/media/Samples/fishes.wmv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/fishes.wmv -------------------------------------------------------------------------------- /SharedContent/media/Samples/grapes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/grapes.jpg -------------------------------------------------------------------------------- /SharedContent/media/Samples/mobius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/mobius.png -------------------------------------------------------------------------------- /SharedContent/media/Samples/sunset.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/sunset.jpg -------------------------------------------------------------------------------- /SharedContent/media/Samples/valley.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/valley.jpg -------------------------------------------------------------------------------- /SharedContent/media/microsoft-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/microsoft-sdk.png -------------------------------------------------------------------------------- /SharedContent/media/smalltile-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/smalltile-sdk.png -------------------------------------------------------------------------------- /SharedContent/media/squaretile-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/squaretile-sdk.png -------------------------------------------------------------------------------- /SharedContent/media/storelogo-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/storelogo-sdk.png -------------------------------------------------------------------------------- /Samples/ActivitySensor/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/AnimationMetrics/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/ApplicationResources/js/strings/ja/resources.json: -------------------------------------------------------------------------------- 1 | 2 | { 3 | "scenario3Message" : "これは翻訳されるサンプル メッセージです。" 4 | 5 | } 6 | -------------------------------------------------------------------------------- /Samples/ApplicationResources/js/strings/scenario13/scenario13.lang-fr.resjson: -------------------------------------------------------------------------------- 1 | { 2 | "languageOnly" : "This is a resource in French" 3 | } -------------------------------------------------------------------------------- /Samples/BarcodeScanner/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/BluetoothAdvertisement/js/css/scenario1_Watcher.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) Microsoft Corporation. All rights reserved 3 | */ 4 | /* styles */ -------------------------------------------------------------------------------- /Samples/BluetoothAdvertisement/js/css/scenario2_Publisher.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) Microsoft Corporation. All rights reserved 3 | */ 4 | /* styles */ -------------------------------------------------------------------------------- /Samples/ContentIndexer/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/CredentialPicker/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/CustomSensors/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/DataReaderWriter/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/FileThumbnails/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/FullScreenMode/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/Inclinometer/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/LanguageFont/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/LowLatencyInput/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/MapControl/cs/Assets/mappin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/MapControl/cs/Assets/mappin.png -------------------------------------------------------------------------------- /Samples/MediaEditing/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/MediaEditing/js/css/scenario1.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) Microsoft Corporation. All rights reserved 3 | */ 4 | 5 | /* styles */ 6 | 7 | -------------------------------------------------------------------------------- /Samples/MediaTranscoding/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/MediaTranscoding/js/css/scenario1.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) Microsoft Corporation. All rights reserved 3 | */ 4 | 5 | /* styles */ 6 | 7 | -------------------------------------------------------------------------------- /Samples/MessageDialog/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/NumberFormatting/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/PackagedContent/js/css/navigationErrors.css: -------------------------------------------------------------------------------- 1 | #iframe 2 | { 3 | width:900px; 4 | height:270px; 5 | border:1px solid silver; 6 | } -------------------------------------------------------------------------------- /Samples/PasswordVault/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/Personalization/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/Printing/cpp/Assets/print_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/Printing/cpp/Assets/print_1.png -------------------------------------------------------------------------------- /Samples/ProximitySensor/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/ResizeAppView/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/Simple3DGameDX/cpp/Assets/hit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/Simple3DGameDX/cpp/Assets/hit.wav -------------------------------------------------------------------------------- /Samples/SpatialSound/cpp/SpatialSound.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/SpatialSound/cpp/SpatialSound.rc -------------------------------------------------------------------------------- /Samples/TextSegmentation/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/VideoPlayback/js/css/scenario1.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) Microsoft Corporation. All rights reserved 3 | */ 4 | 5 | /* styles */ 6 | 7 | -------------------------------------------------------------------------------- /Samples/WiFiScan/cpp/Assets/open_1bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/WiFiScan/cpp/Assets/open_1bar.png -------------------------------------------------------------------------------- /Samples/WiFiScan/cpp/Assets/open_2bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/WiFiScan/cpp/Assets/open_2bar.png -------------------------------------------------------------------------------- /Samples/WiFiScan/cpp/Assets/open_3bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/WiFiScan/cpp/Assets/open_3bar.png -------------------------------------------------------------------------------- /Samples/WiFiScan/cpp/Assets/open_4bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/WiFiScan/cpp/Assets/open_4bar.png -------------------------------------------------------------------------------- /Samples/WiFiScan/cpp/Assets/open_5bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/WiFiScan/cpp/Assets/open_5bar.png -------------------------------------------------------------------------------- /Samples/WiFiScan/cs/Assets/open_1bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/WiFiScan/cs/Assets/open_1bar.png -------------------------------------------------------------------------------- /Samples/WiFiScan/cs/Assets/open_2bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/WiFiScan/cs/Assets/open_2bar.png -------------------------------------------------------------------------------- /Samples/WiFiScan/cs/Assets/open_3bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/WiFiScan/cs/Assets/open_3bar.png -------------------------------------------------------------------------------- /Samples/WiFiScan/cs/Assets/open_4bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/WiFiScan/cs/Assets/open_4bar.png -------------------------------------------------------------------------------- /Samples/WiFiScan/cs/Assets/open_5bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/WiFiScan/cs/Assets/open_5bar.png -------------------------------------------------------------------------------- /Samples/XamlCommanding/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /SharedContent/media/Samples/HeroImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/HeroImage.png -------------------------------------------------------------------------------- /SharedContent/media/Samples/casting.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/casting.mp4 -------------------------------------------------------------------------------- /SharedContent/media/Samples/ladybug.wmv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/ladybug.wmv -------------------------------------------------------------------------------- /SharedContent/media/Samples/rainier.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/rainier.jpg -------------------------------------------------------------------------------- /SharedContent/media/Samples/treetops.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/treetops.jpg -------------------------------------------------------------------------------- /SharedContent/media/placeholder-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/placeholder-sdk.png -------------------------------------------------------------------------------- /Samples/AccountPictureName/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/ActivitySensor/cpp/Tasks/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/ApplicationResources/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/BackgroundSensors/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/CustomHidDeviceAccess/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/EnterpriseDataProtection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/EnterpriseDataProtection/README.md -------------------------------------------------------------------------------- /Samples/FolderEnumeration/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/Json/cs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/Json/cs/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/KeyCredentialManager/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/LibraryManagement/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/LinguisticServices/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/MagneticStripeReader/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/OrientationSensor/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/Projection/cpp/Assets/tile-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/Projection/cpp/Assets/tile-sdk.png -------------------------------------------------------------------------------- /Samples/RelativeInclinometer/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/SemanticTextQuery/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/SimpleCommunication/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/UserConsentVerifier/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/UserInteractionMode/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/WebAccountManagement/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/WiFiScan/cpp/Assets/secure_1bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/WiFiScan/cpp/Assets/secure_1bar.png -------------------------------------------------------------------------------- /Samples/WiFiScan/cpp/Assets/secure_2bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/WiFiScan/cpp/Assets/secure_2bar.png -------------------------------------------------------------------------------- /Samples/WiFiScan/cpp/Assets/secure_3bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/WiFiScan/cpp/Assets/secure_3bar.png -------------------------------------------------------------------------------- /Samples/WiFiScan/cpp/Assets/secure_4bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/WiFiScan/cpp/Assets/secure_4bar.png -------------------------------------------------------------------------------- /Samples/WiFiScan/cpp/Assets/secure_5bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/WiFiScan/cpp/Assets/secure_5bar.png -------------------------------------------------------------------------------- /Samples/WiFiScan/cs/Assets/secure_1bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/WiFiScan/cs/Assets/secure_1bar.png -------------------------------------------------------------------------------- /Samples/WiFiScan/cs/Assets/secure_2bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/WiFiScan/cs/Assets/secure_2bar.png -------------------------------------------------------------------------------- /Samples/WiFiScan/cs/Assets/secure_3bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/WiFiScan/cs/Assets/secure_3bar.png -------------------------------------------------------------------------------- /Samples/WiFiScan/cs/Assets/secure_4bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/WiFiScan/cs/Assets/secure_4bar.png -------------------------------------------------------------------------------- /Samples/WiFiScan/cs/Assets/secure_5bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/WiFiScan/cs/Assets/secure_5bar.png -------------------------------------------------------------------------------- /Samples/WindowsAudioSession/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/XmlDocument/cs/loadExternaldtd/dtd.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Samples/XmlDocument/js/loadExternaldtd/dtd.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /SharedContent/media/Samples/Ring03Part1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/Ring03Part1.jpg -------------------------------------------------------------------------------- /SharedContent/media/Samples/Ring03Part1.wma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/Ring03Part1.wma -------------------------------------------------------------------------------- /SharedContent/media/Samples/Ring03Part2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/Ring03Part2.jpg -------------------------------------------------------------------------------- /SharedContent/media/Samples/Ring03Part2.wma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/Ring03Part2.wma -------------------------------------------------------------------------------- /SharedContent/media/Samples/Ring03Part3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/Ring03Part3.jpg -------------------------------------------------------------------------------- /SharedContent/media/Samples/Ring03Part3.wma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/Ring03Part3.wma -------------------------------------------------------------------------------- /Samples/ApplicationResources/js/strings/scenario13/scenario13.homeregion-001.resjson: -------------------------------------------------------------------------------- 1 | { 2 | "homeregionOnly" : "This is a worldwide resource" 3 | } -------------------------------------------------------------------------------- /Samples/AudioCategory/js/AudioCategory/css/alerts.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) Microsoft Corporation. All rights reserved 3 | */ 4 | 5 | /* styles */ 6 | 7 | -------------------------------------------------------------------------------- /Samples/AudioCategory/js/AudioCategory/css/gamechat.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) Microsoft Corporation. All rights reserved 3 | */ 4 | 5 | /* styles */ 6 | 7 | -------------------------------------------------------------------------------- /Samples/AudioCategory/js/AudioCategory/css/media.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) Microsoft Corporation. All rights reserved 3 | */ 4 | 5 | /* styles */ 6 | 7 | -------------------------------------------------------------------------------- /Samples/AudioCategory/js/AudioCategory/css/movie.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) Microsoft Corporation. All rights reserved 3 | */ 4 | 5 | /* styles */ 6 | 7 | -------------------------------------------------------------------------------- /Samples/AudioCategory/js/AudioCategory/css/other.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) Microsoft Corporation. All rights reserved 3 | */ 4 | 5 | /* styles */ 6 | 7 | -------------------------------------------------------------------------------- /Samples/AudioCategory/js/AudioCategory/css/speech.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) Microsoft Corporation. All rights reserved 3 | */ 4 | 5 | /* styles */ 6 | 7 | -------------------------------------------------------------------------------- /Samples/BluetoothAdvertisement/js/css/scenario3_BackgroundWatcher.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) Microsoft Corporation. All rights reserved 3 | */ 4 | /* styles */ -------------------------------------------------------------------------------- /Samples/BluetoothAdvertisement/js/css/scenario4_BackgroundPublisher.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) Microsoft Corporation. All rights reserved 3 | */ 4 | /* styles */ -------------------------------------------------------------------------------- /Samples/DeviceEnumeration/cpp/BackgroundDeviceWatcherTaskCpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. All rights reserved. 2 | 3 | #include "pch.h" 4 | -------------------------------------------------------------------------------- /Samples/EfficientAnimations/js/images/hour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/EfficientAnimations/js/images/hour.png -------------------------------------------------------------------------------- /Samples/Geotag/cs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/Geotag/cs/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/JapanesePhoneticAnalysis/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/LockScreenApps/cs/Images/tile-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/LockScreenApps/cs/Images/tile-sdk.png -------------------------------------------------------------------------------- /Samples/Logging/cs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/Logging/cs/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/PackagedContent/js/images/bingLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/PackagedContent/js/images/bingLogo.png -------------------------------------------------------------------------------- /Samples/PackagedContent/js/images/msnLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/PackagedContent/js/images/msnLogo.png -------------------------------------------------------------------------------- /Samples/PackagedContent/js/images/xboxLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/PackagedContent/js/images/xboxLogo.png -------------------------------------------------------------------------------- /Samples/PhoneCall/cs/Assets/defaultContact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/PhoneCall/cs/Assets/defaultContact.png -------------------------------------------------------------------------------- /Samples/Printing/cs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/Printing/cs/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/Projection/cpp/Assets/splash-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/Projection/cpp/Assets/splash-sdk.png -------------------------------------------------------------------------------- /Samples/Projection/cpp/Assets/windows-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/Projection/cpp/Assets/windows-sdk.png -------------------------------------------------------------------------------- /Samples/RelativeOrientationSensor/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/SerialArduino/sketch/SerialCommand.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/SerialArduino/sketch/SerialCommand.fzz -------------------------------------------------------------------------------- /Samples/Simple3DGameDX/cpp/Assets/bounce.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/Simple3DGameDX/cpp/Assets/bounce.wav -------------------------------------------------------------------------------- /Samples/Simple3DGameDX/cpp/Assets/cellwall.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/Simple3DGameDX/cpp/Assets/cellwall.dds -------------------------------------------------------------------------------- /Samples/Simple3DGameDX/cpp/Assets/seafloor.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/Simple3DGameDX/cpp/Assets/seafloor.dds -------------------------------------------------------------------------------- /Samples/Simple3DGameXaml/cpp/FullLicense.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/Simple3DGameXaml/cpp/FullLicense.xml -------------------------------------------------------------------------------- /Samples/Simple3DGameXaml/cpp/TrialLicense.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/Simple3DGameXaml/cpp/TrialLicense.xml -------------------------------------------------------------------------------- /Samples/SimpleOrientationSensor/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/SpatialSound/cpp/Assets/MonoSound.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/SpatialSound/cpp/Assets/MonoSound.wav -------------------------------------------------------------------------------- /Samples/TextSuggestion/js/css/Scenario1_Conversion.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) Microsoft Corporation. All rights reserved 3 | */ 4 | 5 | /* styles */ 6 | 7 | -------------------------------------------------------------------------------- /Samples/TitleBar/cs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/TitleBar/cs/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/Unicode/cs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/Unicode/cs/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/UserDataAccountManager/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/WebAuthenticationBroker/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/XamlStateTriggers/cs/Assets/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlStateTriggers/cs/Assets/avatar.png -------------------------------------------------------------------------------- /Samples/XamlTailoredMultipleViews/cs/TailoredMultipleViews/DisplaySizeHelper/pch.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | #include 5 | -------------------------------------------------------------------------------- /Samples/XamlTransform3DParallax/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/ApplicationResources/js/strings/en-US/resources.json: -------------------------------------------------------------------------------- 1 | 2 | { 3 | "scenario3Message" : "This is a sample message that is localized." 4 | } -------------------------------------------------------------------------------- /Samples/ApplicationResources/js/strings/scenario13/scenario13.homeregion-021.resjson: -------------------------------------------------------------------------------- 1 | { 2 | "homeregionOnly" : "This is a North America resource" 3 | } -------------------------------------------------------------------------------- /Samples/ApplicationResources/js/strings/scenario13/scenario13.lang-en.resjson: -------------------------------------------------------------------------------- 1 | { 2 | "languageOnly" : "This is a resource in the English language" 3 | } -------------------------------------------------------------------------------- /Samples/AudioCategory/js/AudioCategory/css/gameeffects.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) Microsoft Corporation. All rights reserved 3 | */ 4 | 5 | /* styles */ 6 | 7 | -------------------------------------------------------------------------------- /Samples/AudioCategory/js/AudioCategory/css/gamemedia.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) Microsoft Corporation. All rights reserved 3 | */ 4 | 5 | /* styles */ 6 | 7 | -------------------------------------------------------------------------------- /Samples/AudioCategory/js/AudioCategory/css/soundeffects.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) Microsoft Corporation. All rights reserved 3 | */ 4 | 5 | /* styles */ 6 | 7 | -------------------------------------------------------------------------------- /Samples/CashDrawer/cs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/CashDrawer/cs/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/DpiScaling/cs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/DpiScaling/cs/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/EfficientAnimations/js/images/minute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/EfficientAnimations/js/images/minute.png -------------------------------------------------------------------------------- /Samples/EfficientAnimations/js/images/second.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/EfficientAnimations/js/images/second.png -------------------------------------------------------------------------------- /Samples/FileAccess/cs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/FileAccess/cs/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/HomeGroup/cs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/HomeGroup/cs/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/LockScreenApps/cs/Images/splash-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/LockScreenApps/cs/Images/splash-sdk.png -------------------------------------------------------------------------------- /Samples/LockScreenApps/cs/Images/windows-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/LockScreenApps/cs/Images/windows-sdk.png -------------------------------------------------------------------------------- /Samples/PackagedContent/js/images/officeLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/PackagedContent/js/images/officeLogo.png -------------------------------------------------------------------------------- /Samples/PosPrinter/cs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/PosPrinter/cs/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/Projection/cpp/Assets/microsoft-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/Projection/cpp/Assets/microsoft-sdk.png -------------------------------------------------------------------------------- /Samples/Projection/cpp/Assets/smallTile-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/Projection/cpp/Assets/smallTile-sdk.png -------------------------------------------------------------------------------- /Samples/Projection/cpp/Assets/storeLogo-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/Projection/cpp/Assets/storeLogo-sdk.png -------------------------------------------------------------------------------- /Samples/Projection/cs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/Projection/cs/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/ProxyStubsForWinRTComponents/cs/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/Simple3DGameDX/cpp/Assets/cellfloor.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/Simple3DGameDX/cpp/Assets/cellfloor.dds -------------------------------------------------------------------------------- /Samples/Simple3DGameXaml/cpp/Assets/dayfloor.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/Simple3DGameXaml/cpp/Assets/dayfloor.dds -------------------------------------------------------------------------------- /Samples/Simple3DGameXaml/cpp/Assets/daywall.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/Simple3DGameXaml/cpp/Assets/daywall.dds -------------------------------------------------------------------------------- /Samples/SpeechRecognitionAndSynthesis/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/SystemMediaTransportControls/js/css/scenario1.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) Microsoft Corporation. All rights reserved 3 | */ 4 | 5 | /* styles */ 6 | 7 | -------------------------------------------------------------------------------- /Samples/WRLInProcessWinRTComponent/cpp/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/WebSocket/cs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/WebSocket/cs/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/XamlNavigation/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // pch.cpp 3 | // Include the standard header and generate the precompiled header. 4 | // 5 | 6 | #include "pch.h" 7 | -------------------------------------------------------------------------------- /SharedContent/media/Samples/LandscapeImage1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/LandscapeImage1.jpg -------------------------------------------------------------------------------- /SharedContent/media/Samples/LandscapeImage10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/LandscapeImage10.jpg -------------------------------------------------------------------------------- /SharedContent/media/Samples/LandscapeImage11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/LandscapeImage11.jpg -------------------------------------------------------------------------------- /SharedContent/media/Samples/LandscapeImage12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/LandscapeImage12.jpg -------------------------------------------------------------------------------- /SharedContent/media/Samples/LandscapeImage13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/LandscapeImage13.jpg -------------------------------------------------------------------------------- /SharedContent/media/Samples/LandscapeImage14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/LandscapeImage14.jpg -------------------------------------------------------------------------------- /SharedContent/media/Samples/LandscapeImage15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/LandscapeImage15.jpg -------------------------------------------------------------------------------- /SharedContent/media/Samples/LandscapeImage16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/LandscapeImage16.jpg -------------------------------------------------------------------------------- /SharedContent/media/Samples/LandscapeImage17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/LandscapeImage17.jpg -------------------------------------------------------------------------------- /SharedContent/media/Samples/LandscapeImage18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/LandscapeImage18.jpg -------------------------------------------------------------------------------- /SharedContent/media/Samples/LandscapeImage19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/LandscapeImage19.jpg -------------------------------------------------------------------------------- /SharedContent/media/Samples/LandscapeImage2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/LandscapeImage2.jpg -------------------------------------------------------------------------------- /SharedContent/media/Samples/LandscapeImage20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/LandscapeImage20.jpg -------------------------------------------------------------------------------- /SharedContent/media/Samples/LandscapeImage21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/LandscapeImage21.jpg -------------------------------------------------------------------------------- /SharedContent/media/Samples/LandscapeImage22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/LandscapeImage22.jpg -------------------------------------------------------------------------------- /SharedContent/media/Samples/LandscapeImage23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/LandscapeImage23.jpg -------------------------------------------------------------------------------- /SharedContent/media/Samples/LandscapeImage24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/LandscapeImage24.jpg -------------------------------------------------------------------------------- /SharedContent/media/Samples/LandscapeImage25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/LandscapeImage25.jpg -------------------------------------------------------------------------------- /SharedContent/media/Samples/LandscapeImage3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/LandscapeImage3.jpg -------------------------------------------------------------------------------- /SharedContent/media/Samples/LandscapeImage4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/LandscapeImage4.jpg -------------------------------------------------------------------------------- /SharedContent/media/Samples/LandscapeImage5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/LandscapeImage5.jpg -------------------------------------------------------------------------------- /SharedContent/media/Samples/LandscapeImage6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/LandscapeImage6.jpg -------------------------------------------------------------------------------- /SharedContent/media/Samples/LandscapeImage7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/LandscapeImage7.jpg -------------------------------------------------------------------------------- /SharedContent/media/Samples/LandscapeImage8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/LandscapeImage8.jpg -------------------------------------------------------------------------------- /SharedContent/media/Samples/LandscapeImage9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/LandscapeImage9.jpg -------------------------------------------------------------------------------- /Samples/ApplicationData/cs/Assets/appDataLocal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/ApplicationData/cs/Assets/appDataLocal.png -------------------------------------------------------------------------------- /Samples/ApplicationData/cs/Assets/appDataTemp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/ApplicationData/cs/Assets/appDataTemp.png -------------------------------------------------------------------------------- /Samples/ApplicationResources/cpp/scenario8.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/ApplicationResources/cpp/scenario8.xaml.cpp -------------------------------------------------------------------------------- /Samples/ApplicationResources/js/strings/scenario13/scenario13.contrast-high.resjson: -------------------------------------------------------------------------------- 1 | { 2 | "contrastOnly" : "This is a generic high contrast resource" 3 | } -------------------------------------------------------------------------------- /Samples/ApplicationResources/js/strings/scenario13/scenario13.contrast-standard.resjson: -------------------------------------------------------------------------------- 1 | { 2 | "contrastOnly" : "This is a contrast standard resource" 3 | } -------------------------------------------------------------------------------- /Samples/AudioCategory/js/AudioCategory/css/communications.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) Microsoft Corporation. All rights reserved 3 | */ 4 | 5 | /* styles */ 6 | 7 | -------------------------------------------------------------------------------- /Samples/ComplexInk/cpp/Scenario1_CustomDry.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/ComplexInk/cpp/Scenario1_CustomDry.xaml.cpp -------------------------------------------------------------------------------- /Samples/Compression/cs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/Compression/cs/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/ContextMenu/js/images/placeholder-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/ContextMenu/js/images/placeholder-sdk.png -------------------------------------------------------------------------------- /Samples/LockScreenApps/cs/Images/badgelogo-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/LockScreenApps/cs/Images/badgelogo-sdk.png -------------------------------------------------------------------------------- /Samples/LockScreenApps/cs/Images/microsoft-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/LockScreenApps/cs/Images/microsoft-sdk.png -------------------------------------------------------------------------------- /Samples/LockScreenApps/cs/Images/smallTile-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/LockScreenApps/cs/Images/smallTile-sdk.png -------------------------------------------------------------------------------- /Samples/LockScreenApps/cs/Images/squareTile-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/LockScreenApps/cs/Images/squareTile-sdk.png -------------------------------------------------------------------------------- /Samples/LockScreenApps/cs/Images/storeLogo-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/LockScreenApps/cs/Images/storeLogo-sdk.png -------------------------------------------------------------------------------- /Samples/ProxyStubsForWinRTComponents/cpp/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/ResizeAppView/cs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/ResizeAppView/cs/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/SerialArduino/cs/Scenario2_LEDTemp.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/SerialArduino/cs/Scenario2_LEDTemp.xaml.cs -------------------------------------------------------------------------------- /Samples/Simple3DGameDX/cpp/Assets/cellceiling.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/Simple3DGameDX/cpp/Assets/cellceiling.dds -------------------------------------------------------------------------------- /Samples/Simple3DGameDX/cpp/Assets/metal_texture.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/Simple3DGameDX/cpp/Assets/metal_texture.dds -------------------------------------------------------------------------------- /Samples/Simple3DGameXaml/cpp/Assets/nightfloor.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/Simple3DGameXaml/cpp/Assets/nightfloor.dds -------------------------------------------------------------------------------- /Samples/Simple3DGameXaml/cpp/Assets/nightwall.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/Simple3DGameXaml/cpp/Assets/nightwall.dds -------------------------------------------------------------------------------- /Samples/SplashScreen/cs/Assets/mediumtile-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/SplashScreen/cs/Assets/mediumtile-sdk.png -------------------------------------------------------------------------------- /Samples/SplashScreen/cs/Assets/splash-Phone-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/SplashScreen/cs/Assets/splash-Phone-sdk.png -------------------------------------------------------------------------------- /Samples/StreamSocket/cs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/StreamSocket/cs/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/WRLOutOfProcessWinRTComponent/cpp/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/XamlFocusVisuals/cs/Assets/yammer_share.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlFocusVisuals/cs/Assets/yammer_share.PNG -------------------------------------------------------------------------------- /Samples/XamlMasterDetail/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // pch.cpp 3 | // Include the standard header and generate the precompiled header. 4 | // 5 | 6 | #include "pch.h" 7 | -------------------------------------------------------------------------------- /Samples/XamlPullToRefresh/cs/Assets/InnerCircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlPullToRefresh/cs/Assets/InnerCircle.png -------------------------------------------------------------------------------- /Samples/XamlPullToRefresh/cs/Assets/OuterCircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlPullToRefresh/cs/Assets/OuterCircle.png -------------------------------------------------------------------------------- /Samples/XamlUIBasics/cs/AppUIBasics/Assets/Grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlUIBasics/cs/AppUIBasics/Assets/Grid.png -------------------------------------------------------------------------------- /Samples/XamlUIBasics/cs/AppUIBasics/Assets/Hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlUIBasics/cs/AppUIBasics/Assets/Hub.png -------------------------------------------------------------------------------- /SharedContent/js/Microsoft.WinJS/fonts/Symbols.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/js/Microsoft.WinJS/fonts/Symbols.ttf -------------------------------------------------------------------------------- /SharedContent/media/Samples/grapes_background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/grapes_background.jpg -------------------------------------------------------------------------------- /SharedContent/media/Samples/rainier_background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/SharedContent/media/Samples/rainier_background.jpg -------------------------------------------------------------------------------- /Samples/AdvancedCasting/cs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/AdvancedCasting/cs/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/ApplicationData/cs/Assets/appDataRoaming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/ApplicationData/cs/Assets/appDataRoaming.png -------------------------------------------------------------------------------- /Samples/ApplicationResources/js/strings/scenario13/scenario13.homeregion-us.resjson: -------------------------------------------------------------------------------- 1 | { 2 | "homeregionOnly" : "This is a United States of America resource" 3 | } -------------------------------------------------------------------------------- /Samples/ApplicationResources/js/strings/scenario13/scenario13.lang-fr-fr.resjson: -------------------------------------------------------------------------------- 1 | { 2 | "languageOnly" : "This is a resource in French as spoken in France" 3 | } -------------------------------------------------------------------------------- /Samples/BarcodeScanner/cs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/BarcodeScanner/cs/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/DatagramSocket/cs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/DatagramSocket/cs/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/DeviceEnumeration/cpp/DeviceEnumerationCpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Include the standard header and generate the precompiled header. 3 | // 4 | 5 | #include "pch.h" 6 | -------------------------------------------------------------------------------- /Samples/EfficientAnimations/js/images/fancyclock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/EfficientAnimations/js/images/fancyclock.png -------------------------------------------------------------------------------- /Samples/FullScreenMode/cs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/FullScreenMode/cs/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/Geolocation/cpp/BackgroundTask/badge-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/Geolocation/cpp/BackgroundTask/badge-logo.png -------------------------------------------------------------------------------- /Samples/Geolocation/cs/BackgroundTask/badge-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/Geolocation/cs/BackgroundTask/badge-logo.png -------------------------------------------------------------------------------- /Samples/HtmlFormValidation/js/css/scenario4.css: -------------------------------------------------------------------------------- 1 | #form4 input:required:invalid, #form4 input:optional:invalid 2 | { 3 | 4 | border:solid #FF0033; 5 | } 6 | 7 | -------------------------------------------------------------------------------- /Samples/LockScreenApps/cs/Images/placeholder-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/LockScreenApps/cs/Images/placeholder-sdk.png -------------------------------------------------------------------------------- /Samples/ShareSource/js/images/dev-center_branding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/ShareSource/js/images/dev-center_branding.png -------------------------------------------------------------------------------- /Samples/SplashScreen/cs/Assets/splash-Windows-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/SplashScreen/cs/Assets/splash-Windows-sdk.png -------------------------------------------------------------------------------- /Samples/TextSuggestion/cs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/TextSuggestion/cs/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/VideoPlayback/common/Assets/Media/sintel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/VideoPlayback/common/Assets/Media/sintel.jpg -------------------------------------------------------------------------------- /Samples/WebSocket/js/css/scenario1_Download.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) Microsoft Corporation. All rights reserved 3 | */ 4 | 5 | #serverAddress { 6 | width: auto; 7 | } -------------------------------------------------------------------------------- /Samples/WebSocket/js/css/scenario2_Upload.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) Microsoft Corporation. All rights reserved 3 | */ 4 | 5 | #serverAddress { 6 | width: auto; 7 | } -------------------------------------------------------------------------------- /Samples/XamlUIBasics/cs/AppUIBasics/Assets/AppBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlUIBasics/cs/AppUIBasics/Assets/AppBar.png -------------------------------------------------------------------------------- /Samples/XamlUIBasics/cs/AppUIBasics/Assets/Border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlUIBasics/cs/AppUIBasics/Assets/Border.png -------------------------------------------------------------------------------- /Samples/XamlUIBasics/cs/AppUIBasics/Assets/Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlUIBasics/cs/AppUIBasics/Assets/Button.png -------------------------------------------------------------------------------- /Samples/XamlUIBasics/cs/AppUIBasics/Assets/Canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlUIBasics/cs/AppUIBasics/Assets/Canvas.png -------------------------------------------------------------------------------- /Samples/XamlUIBasics/cs/AppUIBasics/Assets/Flyout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlUIBasics/cs/AppUIBasics/Assets/Flyout.png -------------------------------------------------------------------------------- /Samples/XamlUIBasics/cs/AppUIBasics/Assets/Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlUIBasics/cs/AppUIBasics/Assets/Image.png -------------------------------------------------------------------------------- /Samples/XamlUIBasics/cs/AppUIBasics/Assets/Pivot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlUIBasics/cs/AppUIBasics/Assets/Pivot.png -------------------------------------------------------------------------------- /Samples/XamlUIBasics/cs/AppUIBasics/Assets/Slices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlUIBasics/cs/AppUIBasics/Assets/Slices.png -------------------------------------------------------------------------------- /Samples/XamlUIBasics/cs/AppUIBasics/Assets/Slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlUIBasics/cs/AppUIBasics/Assets/Slider.png -------------------------------------------------------------------------------- /Samples/BasicFaceDetection/cs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/BasicFaceDetection/cs/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/BasicFaceTracking/cs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/BasicFaceTracking/cs/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/CustomHidDeviceAccess/cs/SampleConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/CustomHidDeviceAccess/cs/SampleConfiguration.cs -------------------------------------------------------------------------------- /Samples/Notifications/cs/BackgroundTasks/Helpers/BadgeHelper.cs: -------------------------------------------------------------------------------- 1 | namespace BackgroundTasks.Helpers 2 | { 3 | public static class BadgeHelper 4 | { 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Samples/Notifications/cs/Notifications/Assets/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/Notifications/cs/Notifications/Assets/cancel.png -------------------------------------------------------------------------------- /Samples/Notifications/cs/Notifications/Assets/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/Notifications/cs/Notifications/Assets/check.png -------------------------------------------------------------------------------- /Samples/NumberFormatting/cs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/NumberFormatting/cs/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/SplashScreen/cs/Assets/smalltile-Phone-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/SplashScreen/cs/Assets/smalltile-Phone-sdk.png -------------------------------------------------------------------------------- /Samples/TextSegmentation/cs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/TextSegmentation/cs/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/VideoPlayback/common/Assets/Media/multivideo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/VideoPlayback/common/Assets/Media/multivideo.jpg -------------------------------------------------------------------------------- /Samples/XamlDeferLoadStrategy/cs/Assets/Icons/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlDeferLoadStrategy/cs/Assets/Icons/email.png -------------------------------------------------------------------------------- /Samples/XamlDeferLoadStrategy/cs/Assets/Icons/gmail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlDeferLoadStrategy/cs/Assets/Icons/gmail.png -------------------------------------------------------------------------------- /Samples/XamlDeferLoadStrategy/cs/Assets/Icons/yahoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlDeferLoadStrategy/cs/Assets/Icons/yahoo.png -------------------------------------------------------------------------------- /Samples/XamlNavigation/cs/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlNavigation/cs/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /Samples/XamlStateTriggers/cs/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlStateTriggers/cs/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /Samples/XamlUIBasics/cs/AppUIBasics/Assets/CheckBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlUIBasics/cs/AppUIBasics/Assets/CheckBox.png -------------------------------------------------------------------------------- /Samples/XamlUIBasics/cs/AppUIBasics/Assets/ComboBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlUIBasics/cs/AppUIBasics/Assets/ComboBox.png -------------------------------------------------------------------------------- /Samples/XamlUIBasics/cs/AppUIBasics/Assets/DarkGray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlUIBasics/cs/AppUIBasics/Assets/DarkGray.png -------------------------------------------------------------------------------- /Samples/XamlUIBasics/cs/AppUIBasics/Assets/FlipView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlUIBasics/cs/AppUIBasics/Assets/FlipView.png -------------------------------------------------------------------------------- /Samples/XamlUIBasics/cs/AppUIBasics/Assets/GridView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlUIBasics/cs/AppUIBasics/Assets/GridView.png -------------------------------------------------------------------------------- /Samples/XamlUIBasics/cs/AppUIBasics/Assets/InkCanvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlUIBasics/cs/AppUIBasics/Assets/InkCanvas.png -------------------------------------------------------------------------------- /Samples/XamlUIBasics/cs/AppUIBasics/Assets/LightGray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlUIBasics/cs/AppUIBasics/Assets/LightGray.png -------------------------------------------------------------------------------- /Samples/XamlUIBasics/cs/AppUIBasics/Assets/ListBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlUIBasics/cs/AppUIBasics/Assets/ListBox.png -------------------------------------------------------------------------------- /Samples/XamlUIBasics/cs/AppUIBasics/Assets/ListView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlUIBasics/cs/AppUIBasics/Assets/ListView.png -------------------------------------------------------------------------------- /Samples/XamlUIBasics/cs/AppUIBasics/Assets/Slices2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlUIBasics/cs/AppUIBasics/Assets/Slices2.png -------------------------------------------------------------------------------- /Samples/XamlUIBasics/cs/AppUIBasics/Assets/SplitView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlUIBasics/cs/AppUIBasics/Assets/SplitView.png -------------------------------------------------------------------------------- /Samples/XamlUIBasics/cs/AppUIBasics/Assets/TextBlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlUIBasics/cs/AppUIBasics/Assets/TextBlock.png -------------------------------------------------------------------------------- /Samples/XamlUIBasics/cs/AppUIBasics/Assets/TextBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlUIBasics/cs/AppUIBasics/Assets/TextBox.png -------------------------------------------------------------------------------- /Samples/XamlUIBasics/cs/AppUIBasics/Assets/ToolTip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlUIBasics/cs/AppUIBasics/Assets/ToolTip.png -------------------------------------------------------------------------------- /Samples/XamlUIBasics/cs/AppUIBasics/Assets/ViewBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlUIBasics/cs/AppUIBasics/Assets/ViewBox.png -------------------------------------------------------------------------------- /Samples/XamlUIBasics/cs/AppUIBasics/Assets/ninegrid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlUIBasics/cs/AppUIBasics/Assets/ninegrid.gif -------------------------------------------------------------------------------- /Samples/AnimationLibrary/js/css/filterSearchList.css: -------------------------------------------------------------------------------- 1 | .listItem 2 | { 3 | background: #336699; 4 | height: 50px; 5 | width: 120px; 6 | margin: 0px 20px 20px 20px; 7 | } -------------------------------------------------------------------------------- /Samples/CustomUsbDeviceAccess/js/js/constants.js: -------------------------------------------------------------------------------- 1 | //// Copyright (c) Microsoft Corporation. All rights reserved 2 | 3 | (function () { 4 | "use strict"; 5 | 6 | })(); 7 | -------------------------------------------------------------------------------- /Samples/Geolocation/js/geolocationjs/images/badge-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/Geolocation/js/geolocationjs/images/badge-logo.png -------------------------------------------------------------------------------- /Samples/ShareSource/cpp/Assets/microsoftLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/ShareSource/cpp/Assets/microsoftLogo.scale-100.png -------------------------------------------------------------------------------- /Samples/ShareSource/cpp/Assets/microsoftLogo.scale-140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/ShareSource/cpp/Assets/microsoftLogo.scale-140.png -------------------------------------------------------------------------------- /Samples/ShareSource/cpp/Assets/microsoftLogo.scale-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/ShareSource/cpp/Assets/microsoftLogo.scale-180.png -------------------------------------------------------------------------------- /Samples/UserInteractionMode/cs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/UserInteractionMode/cs/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/WebAccountManagement/cs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/WebAccountManagement/cs/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/XamlDeferLoadStrategy/cs/Assets/Icons/outlook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlDeferLoadStrategy/cs/Assets/Icons/outlook.png -------------------------------------------------------------------------------- /Samples/XamlNavigation/cpp/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlNavigation/cpp/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /Samples/XamlResponsiveTechniques/cs/Assets/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlResponsiveTechniques/cs/Assets/Background.png -------------------------------------------------------------------------------- /Samples/XamlResponsiveTechniques/cs/Assets/Background2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlResponsiveTechniques/cs/Assets/Background2.png -------------------------------------------------------------------------------- /Samples/XamlResponsiveTechniques/cs/Assets/Background3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlResponsiveTechniques/cs/Assets/Background3.png -------------------------------------------------------------------------------- /Samples/XamlResponsiveTechniques/cs/Assets/Background4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlResponsiveTechniques/cs/Assets/Background4.png -------------------------------------------------------------------------------- /Samples/XamlResponsiveTechniques/cs/Assets/Background5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlResponsiveTechniques/cs/Assets/Background5.png -------------------------------------------------------------------------------- /Samples/XamlStateTriggers/cs/Assets/WideLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlStateTriggers/cs/Assets/WideLogo.scale-100.png -------------------------------------------------------------------------------- /Samples/XamlUIBasics/cs/AppUIBasics/Assets/CommandBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlUIBasics/cs/AppUIBasics/Assets/CommandBar.png -------------------------------------------------------------------------------- /Samples/XamlUIBasics/cs/AppUIBasics/Assets/DatePicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlUIBasics/cs/AppUIBasics/Assets/DatePicker.png -------------------------------------------------------------------------------- /Samples/XamlUIBasics/cs/AppUIBasics/Assets/MediumGray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlUIBasics/cs/AppUIBasics/Assets/MediumGray.png -------------------------------------------------------------------------------- /Samples/XamlUIBasics/cs/AppUIBasics/Assets/MenuFlyout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlUIBasics/cs/AppUIBasics/Assets/MenuFlyout.png -------------------------------------------------------------------------------- /Samples/XamlUIBasics/cs/AppUIBasics/Assets/PasswordBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlUIBasics/cs/AppUIBasics/Assets/PasswordBox.png -------------------------------------------------------------------------------- /Samples/XamlUIBasics/cs/AppUIBasics/Assets/ProgressBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlUIBasics/cs/AppUIBasics/Assets/ProgressBar.png -------------------------------------------------------------------------------- /Samples/XamlUIBasics/cs/AppUIBasics/Assets/RadioButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlUIBasics/cs/AppUIBasics/Assets/RadioButton.png -------------------------------------------------------------------------------- /Samples/XamlUIBasics/cs/AppUIBasics/Assets/RichEditBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlUIBasics/cs/AppUIBasics/Assets/RichEditBox.png -------------------------------------------------------------------------------- /Samples/XamlUIBasics/cs/AppUIBasics/Assets/StackPanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlUIBasics/cs/AppUIBasics/Assets/StackPanel.png -------------------------------------------------------------------------------- /Samples/XamlUIBasics/cs/AppUIBasics/Assets/TimePicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/XamlUIBasics/cs/AppUIBasics/Assets/TimePicker.png -------------------------------------------------------------------------------- /Samples/ActivitySensor/cpp/Tasks/pch.h: -------------------------------------------------------------------------------- 1 | // 2 | // Header for standard system include files. 3 | // 4 | 5 | #pragma once 6 | 7 | #include 8 | #include 9 | -------------------------------------------------------------------------------- /Samples/ApplicationResources/js/strings/scenario13/scenario13.contrast-black_scale-100.resjson: -------------------------------------------------------------------------------- 1 | { 2 | "multiDimensional" : "This is a contrast black, scale 100 resource" 3 | } -------------------------------------------------------------------------------- /Samples/ApplicationResources/js/strings/scenario13/scenario13.contrast-black_scale-140.resjson: -------------------------------------------------------------------------------- 1 | { 2 | "multiDimensional" : "This is a contrast black, scale 140 resource" 3 | } -------------------------------------------------------------------------------- /Samples/ApplicationResources/js/strings/scenario13/scenario13.contrast-black_scale-180.resjson: -------------------------------------------------------------------------------- 1 | { 2 | "multiDimensional" : "This is a contrast black, scale 180 resource" 3 | } -------------------------------------------------------------------------------- /Samples/ApplicationResources/js/strings/scenario13/scenario13.contrast-white_scale-100.resjson: -------------------------------------------------------------------------------- 1 | { 2 | "multiDimensional" : "This is a contrast white, scale 100 resource" 3 | } -------------------------------------------------------------------------------- /Samples/ApplicationResources/js/strings/scenario13/scenario13.contrast-white_scale-140.resjson: -------------------------------------------------------------------------------- 1 | { 2 | "multiDimensional" : "This is a contrast white, scale 140 resource" 3 | } -------------------------------------------------------------------------------- /Samples/ApplicationResources/js/strings/scenario13/scenario13.contrast-white_scale-180.resjson: -------------------------------------------------------------------------------- 1 | { 2 | "multiDimensional" : "This is a contrast white, scale 180 resource" 3 | } -------------------------------------------------------------------------------- /Samples/ApplicationResources/js/strings/scenario13/scenario13.lang-en-gb.resjson: -------------------------------------------------------------------------------- 1 | { 2 | "languageOnly" : "This is a resource in English as spoken in the United Kingdom" 3 | } -------------------------------------------------------------------------------- /Samples/ApplicationResources/shared/images/logo.scale-140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/Windows-universal-samples/master/Samples/ApplicationResources/shared/images/logo.scale-140.png --------------------------------------------------------------------------------