实现QPushButton控件Icon居右,text居左显示 如下效果图:
function:
QPushButton::setLayoutDirection(Qt::LayoutDirection direction);//设置部件的布局方向
实现:
QPushButton * btn_button = new QPushButton(u8"点击按钮", this);
btn_button->setLayoutDirection(Qt::LayoutDirection::RightToLeft);