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.
使用Qt5官方发布——
我需要保存图像元素的 x,y 属性。这个
QObject* pic = rootitem1->findChild<QObject*>("image_objectName"); int x = pic->property("x").toInt();
给出属性最初设置的值,但我需要的是鼠标移动图像后的当前值。我可能遗漏了一些简单的东西,但我在上面找不到任何其他东西。真的很感激任何帮助,谢谢。