本文介绍了如何在WPF应用程序中调用Windows.Devices.Bluetooth的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用Windows.Devices.Bluetooth命名空间,并在WPF应用程序中获得PlatformNotSupportedException。 它说这个平台不支持WinRT。

I'm trying to use the Windows.Devices.Bluetooth namespace and I get PlatformNotSupportedException in a WPF app.  It says WinRT is not supported on this platform.

我做错了什么?

杰克

推荐答案

Windows.Devices.Bluetooth API是DualApiPartitioned,因此可以从桌面上下文和UWP调用。

The Windows.Devices.Bluetooth API are DualApiPartitioned and so can be called from desktop contexts as well as from UWP.

桌面.Net Framework论坛中的人员应该能够提供有关从桌面上下文调用WinRT API的更多详细信息。

Folks in the desktop .Net Framework forums should be able to provide more detail on calling WinRT API from desktop contexts if needed.


这篇关于如何在WPF应用程序中调用Windows.Devices.Bluetooth的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-03 13:01