Qt Designer 中 QGraphicsView 的占位符图像
placeholder image for QGraphicsView in Qt Designer
我经常有 UI 使用 QGraphicsView。在运行的时候,我可以把各种精彩的东西放到我的场景里。然而,在 Qt Designer(Creator)的 design 时间,我想要显示某种占位符图像以帮助我可视化 UI 会很像的
我找不到 属性 来设置某种背景图片。我在 styleSheet 属性 中尝试了各种设置,但没有任何显示,例如
QGraphicsView: {
background-image: speedo.png;
}
有可能,你只是使用了错误的语法:
QGraphicsView {
background-image: url("/path/to/your/image.png");
}
QGraphicsView is a QWidget
, so you can use the Qt Style Sheets Reference 使用允许的属性设计您的小部件
我经常有 UI 使用 QGraphicsView。在运行的时候,我可以把各种精彩的东西放到我的场景里。然而,在 Qt Designer(Creator)的 design 时间,我想要显示某种占位符图像以帮助我可视化 UI 会很像的
我找不到 属性 来设置某种背景图片。我在 styleSheet 属性 中尝试了各种设置,但没有任何显示,例如
QGraphicsView: {
background-image: speedo.png;
}
有可能,你只是使用了错误的语法:
QGraphicsView {
background-image: url("/path/to/your/image.png");
}
QGraphicsView is a QWidget
, so you can use the Qt Style Sheets Reference 使用允许的属性设计您的小部件