SpeechRecognizer 如何在程序进入后台后仍然可以识别语音
大致程序如下: recognizer = SpeechRecognizer(); recognizer.ContinuousRecognitionSession().ResultGenerated({ this, &MainWindow::ContinuousRecognitionSession_ResultGenerated }); recognizer.ContinuousRecognitionSession().StartAsync() 切换到其他程序,语音识别就自动停了
请问一下,平台有办法拿到愿望清单的数据吗?
我们一直在使用 https://learn.microsoft.com/en-us/windows/uwp/monetize/add-on-acquisitions-data 获取相关的销售数据,我现在也想下载 wishlist 的相关数据,但是我一直没找到对应的接口 我发现我们是可以在 https://partner.microsoft.com/en-us/dashboard/insights/analytics/downloadshub 下载对应的 Excel…

在Unity引擎build出来的UWP项目中,使用webview2控件加载的网页无法输入数字
在Unity转出的uwp工程中,使用webview2做为浏览器控件访问网页,在网页中无法输入英文或数字。 但是如果我把UWP工程中MainPage.xaml.cpp文件里的 appCallbacks->InitializeD3DXAML();方法注释掉就可以正常输入了。但是注释掉这行代码就无法显示游戏内容了。 所以请问我该如何处理网页中无法输入英文或数字的问题。

Why is the data incomplete when I use the add-on-acquisitions-data interface?
https://learn.microsoft.com/en-us/windows/uwp/monetize/add-on-acquisitions-data Why is the data incomplete when I use the add-on-acquisitions-data interface? The interface I use is the…
打包应用的时候出现,存储阻止了该账户的错误。
此问题,我看了支持中心的其他解决方法都试过了,更新,注销,重启,再重新安装等等方法全部试过了。还是出现该问题。

UWP Camera Application Throws Error "You Cannot Change Media Type During This Operation" on Suresafego 4 Device
I am developing a UWP camera application, which works fine on the Suresafego 3 device but throws an error on the Suresafego 4 device: "You cannot change the media type during this operation." After debugging, I found that the program works…

Is it normal to submit device metadata in the Microsoft Partner Center and process validation status for 2 months?
Is it normal to submit device metadata in the Microsoft Partner Center and process validation status for 2 months?

Windows UWP应用更新/下载问题
当我尝试更新或重新下载以下应用时均返回错误代码:0x800700B7
Windows.Devices.Bluetooth无法断开已连接的蓝牙
winfrom 中采用Windows.Devices.Bluetooth来实现连接nordic蓝牙设备(52840),连接成功后,我无法断开已经连接的设备?很奇怪官方文档没有断开的说明,找不到任何相关断开低功率设备的文档代码,能找到的只有device.Dispose();但是毫无作用?为什么是因为win api底层问题吗?

我将win10 sdk的蓝牙服务移植到WPF,无法做到快速断开和连接(快速断开后再次连接的情况下)
打开软件(我的测试程序)第一次连接Ble设备 很顺利 当我快速断开连接,并尝试重连,会出现无法找到特征等其他问题导致无法连接上Ble设备,如下图 接近20S才重新获得数据,我不清楚我的问题到底出在哪里,现附上我的demo,请大家帮忙解答下 否 public class MainWindowViewModel : BindableBase { private string _title = "Prism Application"; public string…
DEV HOME 安装失败
应用安装失败,错误消息: An internal error occurred with error 0x80070005. See http://go.microsoft.com/fwlink/?LinkId=235160 for help diagnosing app deployment issues. (0x80070005)
UWP应用怎么获取WindowApps中自身目录下文件的读写权限
Unity项目打包成UWP项目之后,在运行时提示了”UnauthorizedAccessException: Access to the path "C:/Program…
我正在使用UWP C#开发一个应用,其中一个功能是可以通过网络接口下载安装包,我使用HttpClient类进行Get请求,但是在GetAsync接口被调用时抛出异常,内容为:无法与服务器建立连接,我已在appxmanifest文件中声明internetClient功能,请问该异常是由什么原因导致,应该如何解决
string url = $"{baseUrl}?model={param}"; using (HttpClient client = new HttpClient()) { try { using (HttpResponseMessage response = await client.GetAsync(new…

how to apply for custom capability with Microsoft prefix in UWP Application
The ESim class doc says it requires a custom capability declaration. And according to my local test, this capability also needs a sccd file to work properly. Since it's a custom capability with Microsoft prefix, who should i contact with if i want to…

Visual Studio 2022 如何开发UWP应用
最近我在另一台电脑上安装了最新版的 Visual Studio 2022,但安装选项中只有WinUI的开发工具包,没有通用Windows平台UWP的工具包了,我需要在电脑上进行一些UWP应用的开发,请问我要如何操作?前段时间在另一台电脑上安装时还有通用Windows平台的开发工具可供安装,现在没有了。另外我在Visual Studio 2019中看到了有UWP的开发包,但是我想使用Visual Studio 2022。另外我可以同样安装UWP和WinUI的开发工具包吗?

ProvisioningAgent.CreateFromNetworkAccountId(mobileBroadbandAccount.NetworkAccountId) 拒绝访问
<?xml version="1.0" encoding="utf-8"?> <Package…

UWP app 不能启动 应用部件清单验证错误
错误信息: DEP0700: Registration of the app failed. [0x80080204] 错误 0xC00CEE2D: 应用部件清单验证错误: 应用部件清单 XML 必须是有效的: 行: 1,列: 1,原因: 文档语法错误。 直接新建空白应用,Ctrl+F5 运行,提示错误。 应用部件清单这个文件储存在哪里?Package.appxmanifest…

在 AutoGeneratingColumn 期间将 CheckBox 设置为 UWP DataGrid 列标题
你好 我想将 Community Toolkit DataGrid 列标题设置为 CheckBox。 我想在 AutoGeneratingColum 事件中执行此操作。我正在尝试这样的代码: private void AutoGeneratingColumn(object sender, DataGridAutoGeneratingColumnEventArgs e) { if(e.PropertyName == "IsSelected") { …

如何移除文本框的焦点边框?
我个人不喜欢文本框获得焦点时的厚边框。有什么办法可以去掉它吗? 此问题由How remove focus borders of TextBox? 总结而来

UWP error 0x80270254
On latest Win11, When call IApplicationActivationManager interface method ActivateForFile to start uwp application with file argument, it always return 0x80270254 error code. Anyone know why?
