作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想要一个 QDialogButtonBox
按此特定顺序使用三个按钮:
Ok | Apply | Cancel
Apply
在中心?
最佳答案
按钮布局是特定于平台的。
Windows - Ok | Cancel | Apply
OS X - Apply | Cancel | Ok
KDE - Ok | Apply | Cancel
GNOME - Apply | Cancel | Ok
QProxyStyle
并重新实现
styleHint方法,为
QStyle::SH_DialogButtonLayout
提供自定义样式风格提示。
class KdeStyle : public QProxyStyle
{
public:
virtual int styleHint(StyleHint stylehint, const QStyleOption *opt, const QWidget *widget, QStyleHintReturn *returnData) const override
{
if (stylehint == SH_DialogButtonLayout)
return QDialogButtonBox::KdeLayout;
return QProxyStyle::styleHint(stylehint, opt, widget, returnData);
}
};
qApp->setStyle(new KdeStyle());
QDialogButtonBox
中按钮的布局或
QMessageBox
.可能的值为 0 (
WinLayout
)、1 (
MacLayout
)、2 (
KdeLayout
) 和 3 (
GnomeLayout
)。
QDialogButtonBox *buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Apply | QDialogButtonBox::Cancel);
buttonBox->setStyleSheet("* { button-layout: 2 }");
关于qt - QDialogButtonBox 中 "Apply"按钮的位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35906367/
我是一名优秀的程序员,十分优秀!