C# WPF 中缺少 MessageDialog
MessageDialog missing in C# WPF
我是 WPF C# 新手。
我想使用 MessageDialog,但我无法实例化它,因为找不到它的名称空间引用。
请注意,我可以使用 MessageBox。
我这里截图了:
我应该看什么来解决这个问题?
Update
I tried to use a ModalWindow as suggested by some user who deleted his answer, but I have the same problem.
MessageDialog
是一个 UWP class,因此它仅适用于 Windows 10 个商店应用程序。据我所知,它在 WPF 中不存在。
命名空间是 Windows.UI.Popups
.
我是 WPF C# 新手。
我想使用 MessageDialog,但我无法实例化它,因为找不到它的名称空间引用。
请注意,我可以使用 MessageBox。
我这里截图了:
我应该看什么来解决这个问题?
Update I tried to use a ModalWindow as suggested by some user who deleted his answer, but I have the same problem.
MessageDialog
是一个 UWP class,因此它仅适用于 Windows 10 个商店应用程序。据我所知,它在 WPF 中不存在。
命名空间是 Windows.UI.Popups
.