以 Windows 7 风格使用消息框
阅读有关正确用户界面的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
大多数情况下,当您使用 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.