Hi everybody!
I try use MenuBar inside my application and I have a small issue. I can’t understand how to detect a click for menu item. The code which I try using for it, looks like this:
menuBar: MenuBar {
Menu {
text: "File"
MenuItem {text: "Open Log..."}
}
Menu {
text: "Preferences"
}
Menu {
text: "Help"
MenuItem {
text: "About..."
onClickedItem: {
console.log("About Selected....");
}
}
}
}
The MenuBar and MenuItem works fine, but when I try to use signals for click I received this error:
Cannot assign to non-existent property "onClickedItem"
I checked QML Desktop Components and found this signals for MenuItem:
signal selectedItem(int index, Rectangle item)
signal clickedItem
What signals I must using to select item from menu?
Update: I found my mistake!
↧