Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
windows8 应用程序的用户可以拥有 userId 吗?
我想简化应用程序的注册。我不想输入密码,只需提供用户名和启动应用程序的用户 ID。
您需要在应用程序清单中设置“企业身份验证”功能。然后就是简单地使用:
var dialog = new Windows.UI.Popups.MessageDialog( await Windows.System.UserProfile.UserInformation.GetDomainNameAsync());
如果您使用上述测试代码(例如在您的启动方法或 OnNavigatedTo 或单击按钮上),请确保将“等待”添加到方法的签名中