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.
我知道如何QSpinBox通过编码将其包含在用户界面中。
QSpinBox
QSpinBox *spinbox= new QSpinBox(this);
现在我正在寻找这样一个函数,通过它我可以QSpinBox通过给出该位置的坐标值来设置用户界面中的特定位置。
我尝试了几个功能,但现在一个给了我正确的解决方案,我想怎么做?
Qt中有这样的功能吗?提前致谢。
要将小部件放置在某个位置,您必须使用该move()功能,请记住小部件不应包含在任何布局中
move()
spinbox->move(x, y);
或者:
Qpoint p(x, y); spinbox->move(p);