将对话框中的 lineEdit 中的文本放入 lineEdit @ mainwindow 时出现问题

发布于 2024-11-07 01:41:22 字数 159 浏览 0 评论 0原文

我对 Qt 很陌生,试图做这个简单的事情,但我不能:( 这是我想对图片执行的操作: http://pokazywarka.pl/r2dwtb-2/

非常感谢您的帮助。

im quite new to Qt and trying to do this simple thing, but i cant:(
here is what i want to do on the picture : http://pokazywarka.pl/r2dwtb-2/

thanks a lot for any help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

ㄖ落Θ余辉 2024-11-14 01:41:22

看起来这是一个直接的setText;

ui->lineEdit2->setText( ui->lineEdit1->text() );

It looks like it is a straight-forward setText;

ui->lineEdit2->setText( ui->lineEdit1->text() );
三人与歌 2024-11-14 01:41:22

您还可以通过将信号 textChanged 连接到插槽 setText 来“自动”设置

connect(ui.lineEdit1, SIGNAL(textChanged(const QString &)), ui2.lineEdit2, SLOT(setText(const QString &)));

You can also make it "automaticly" by connecting signal textChanged to slot setText

connect(ui.lineEdit1, SIGNAL(textChanged(const QString &)), ui2.lineEdit2, SLOT(setText(const QString &)));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文