Javascriptimport QtQuick 2.5import QtQuick.Controls 1.4 Rectangle { width: 200; height: 200; Column { anchors.fill: parent; anchors.margins: 2; spacing: 2; Label { text: "Black & White"; } Button { text: "Black & White"; menu: Menu { MenuItem { text: "Black & White" } } } }}
Javascriptfunction menuItemText(text) { return text.replace(new RegExp("&", 'g'), "&&");}
function menuItemText(text) { return text.replace("&", "&&");}