Skip to content

Instantly share code, notes, and snippets.

@FONQRI
Created March 30, 2023 08:42
Show Gist options
  • Save FONQRI/250040015d3539dc268d3e6c6a4ce2c5 to your computer and use it in GitHub Desktop.
Save FONQRI/250040015d3539dc268d3e6c6a4ce2c5 to your computer and use it in GitHub Desktop.
QtQuickTutorialMouseAreaUsage1.qml for moderncpp.ir tutorial
Rectangle {
id: rect1
x: 12; y: 12
width: 76; height: 96
color: "lightsteelblue"
MouseArea {
id: area
width: parent.width
height: parent.height
onClicked: rect2.visible = !rect2.visible
}
}
Rectangle {
id: rect2
x: 112; y: 12
width: 76; height: 96
border.color: "lightsteelblue"
border.width: 4
radius: 8
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment