Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
QCheckBoxウィジェットの左側にはチェックボックスがあり、右側には説明があります(以下を参照)。
左側に説明、右側にボックスを表示する方法を知っている人はいますか?
を使用できますQWidget::setLayoutDirection(Qt::RightToLeft);。
QWidget::setLayoutDirection(Qt::RightToLeft);
QCheckBox *checkBox = new QCheckBox("Hey!", parent); checkBox->setLayoutDirection(Qt::RightToLeft);