如何使用 C++ 制作弹出框?
我正在与地铁合作,我正在尝试制作一个弹出窗口。我找到了一个名为 CoreWindowFlyout 的类,但它不能用于使用按钮以外的其他控件创建弹出窗口。
有人知道如何在 C++ 中做到这一点吗?
I am working with metro and I am trying to make a flyout window. I have found a class called CoreWindowFlyout, but it cannot be used for creating flyouts with other controls than buttons.
Does someone know how to do this in C++?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您将 XAML 与 C++ 应用程序结合使用,您将需要考虑使用
Popup
类。在开发人员预览版中,“轻微解雇”功能不是内置的,因此您必须自己管理它,但它最终将具有轻微解雇功能,因此使用它将使您走上正确的道路。If you are using XAML in combination with your C++ application you'll want to look at using the
Popup
class. In the developer preview the "light dismiss" capability isn't built-in so you will have to manage that on your own, but it will eventually have light dismiss capabilities, so using that will get you along the right path.