QPainter 宽度和高度
有没有机会知道QPainter
的大小?我正在使用 QPainter 来绘制移动应用程序的整个图形界面。问题是某些应用程序在窗口上覆盖了每个设备大小不同的菜单,从而使事情几乎不可能! 是否有可能在不知道 QPainter 大小的情况下做到这一点?
编辑:简单的 width()
和 height()
有效!
Is there any chance to find out the size of the QPainter
? I am using QPainter
for drawing the whole graphic interface for a mobile app. The problem is that certain application overlay the window with menu which size is different for every device, thus making things nearly impossible!
Are there any possibilities to do it instead of knowing QPainter
size?
EDIT: simple width()
and height()
works!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须查看附加到 QPainter 的 QPaintDevice 的大小
You have to look at the size of the QPaintDevice attached to the QPainter