为什么当我使用&在我的Qt字符串中

时间:2014-02-21 11:40:11

标签: c++ qt

当我使用&在我的ui namings中,而不是捷径(例如:Alt + C),它的类型和&在输出中。

label = new QLabel(tr("&Cell Location"));
运行后

和我的标签名称是:& Cell Location。

1 个答案:

答案 0 :(得分:4)

也许您还需要使用快捷方式,方法是将标签与“伙伴小部件”相关联,as the documentation shows

QLineEdit *nameEd = new QLineEdit(this);
QLabel    *nameLb = new QLabel("&Name:", this);
nameLb->setBuddy(nameEd);