当我使用&在我的ui namings中,而不是捷径(例如:Alt + C),它的类型和&在输出中。
label = new QLabel(tr("&Cell Location"));
运行后和我的标签名称是:& Cell Location。
答案 0 :(得分:4)
也许您还需要使用快捷方式,方法是将标签与“伙伴小部件”相关联,as the documentation shows:
QLineEdit *nameEd = new QLineEdit(this);
QLabel *nameLb = new QLabel("&Name:", this);
nameLb->setBuddy(nameEd);