以 Windows 7 风格使用消息框

发布于 2024-09-04 07:20:22 字数 334 浏览 2 评论 0原文

阅读有关正确用户界面的 MSDN 文章后:

http://msdn.microsoft .com/en-us/library/aa974176.aspx

我想修改我在应用程序中使用的消息框以反映这些准则(例如,使用更大的字体显示主要说明、更好地命名按钮等...)。

我的问题是,是否有一个 API 可以让您轻松构建此类消息框(如 user32\MessageBox()),或者您实际上必须构建自己的遵循准则的消息框?

After reading the MSDN article about proper user interface here:

http://msdn.microsoft.com/en-us/library/aa974176.aspx

I want to modify the message boxes I use in my applications to reflect those guidelines (for example, have the Main Instructions in a larger font, better named Buttons, etc...).

My question is, is there an API that allows you to easily build those kind of message boxes (a la user32\MessageBox()), or do you actually have to build your own message boxes which follow the guidelines?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

表情可笑 2024-09-11 07:20:22

大多数情况下,当您使用 MessageBox 或任何适用于您正在使用的语言的包装器(您没有说)时,您就会明白(尝试一下并看看!)。还有基于任务的对话框,它远远超出了是/否/取消消息框世界。如果您使用 C++,则可以使用 Win32 API;如果您使用 C# 或 VB.NET,则 Windows API 代码包有一个包装器。

Mostly you just get that (try it and see!) when you use MessageBox or whatever wrapper applies in the language you're using (you didn't say.) There is also Task Based Dialog which goes well beyond the yes/no/cancel world of message box. There is a Win32 API for that if you're in C++, and the Windows API Code Pack has a wrapper if you're in C# or VB.NET.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文