- Progress your webapp to a PWA with PWABuilder.
- Microsoft Graph Sample "Goat Insights" sample app
- MR Multi-client Crane demo.
- Learn more about Windows MR.
- Getting started with Gaze on Windows
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (typeof Windows !== 'undefined' && | |
typeof Windows.UI !== 'undefined' && | |
typeof Windows.UI.Notifications !== 'undefined') { | |
// Construct the tile notification content | |
var tileContent = new Windows.Data.Xml.Dom.XmlDocument(); | |
var tile = tileContent.createElement("tile"); | |
tileContent.appendChild(tile); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (typeof Windows !== 'undefined'&& typeof Windows.UI !== 'undefined' && typeof Windows.UI.Notifications !== 'undefined') { | |
// Construct the toast notification content | |
var toastContent = new Windows.Data.Xml.Dom.XmlDocument(); | |
var toast = toastContent.createElement("toast"); | |
toastContent.appendChild(toast); | |
var visual = toastContent.createElement("visual"); | |
toast.appendChild(visual); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (typeof Windows !== 'undefined'&& typeof Windows.Security !== 'undefined' && typeof Windows.Security.Credentials !== 'undefined') { | |
function UploadCheck() { | |
var username = "BobBarker" + Math.random(); | |
var keycredentialmanager = Windows.Security.Credentials.KeyCredentialManager; | |
keycredentialmanager.isSupportedAsync().done(function (result) { | |
if (result == true) { | |
var retreivalstatus = keycredentialmanager.openAsync(username).done(function (result) { |
OlderNewer