QT中鼠标左键按下如何判断在哪个编辑框里
qt
[解决办法]
定义标记变量FLAG,1,2,3,4代表四个编辑框,点击相应编辑框就让FALG等于几,点击按钮时就根据FLAG来发送
[解决办法]
Qt更容易,只要在界面的这个类里,ui->xxx就能找到对应的控件(UI编辑器里记住控件名字)
[解决办法]
QWidget * QApplication::widgetAt(const QPoint & point) [static]
Returns the widget at global screen position point, or 0 if there is no Qt widget there.
This function can be slow.
See also QCursor::pos(), QWidget::grabMouse(), and QWidget::grabKeyboard().