0

如何在 Windows 应用程序的对话框中使用彩色按钮和圆角实现这种外观和感觉?

我不认为它可以使用 MFC 完成,wxWidgets 或 Qt 有帮助吗?或任何其他平台?在此处输入图像描述

4

3 回答 3

4

您可以设计任何您追求的外观和感觉QSS。你为什么不看看 Qt 文档?有很多可用的示例和指导。

但有时,您需要覆盖控件才能实现目标。就像在这个问题中一样。但我认为您需要的外观可以通过QSS单独实现。

于 2013-04-13T03:53:17.900 回答
1

It is easy to achieve such a look and feel with any GUI framework.

Choose the framework you are most comfortable with, RTFM, roll up your sleeves and get started.

On any framework you will find methods to draw bitmaps of any color and shape and to handle mouse clicks on them. What more do you need?

This is what GUI frameworks DO! They also provide a default set of widgets for the bone lazy and the conventional. You aren't one of those people. are you?

于 2013-04-13T11:47:50.450 回答
1

在不同平台上实现相同 UI 的最简单和最快的方法是使用 Qt 在 QML 中实现它。与根据底层平台样式自动设置样式的小部件不同,QML 完全独立于平台。您可能可以使用 CSS 设置常规小部件的样式,甚至可以使用任意 UI API 手动重新实现绘图,但这不会那么容易。

于 2013-04-13T02:47:33.460 回答