Created
March 30, 2023 08:42
-
-
Save FONQRI/250040015d3539dc268d3e6c6a4ce2c5 to your computer and use it in GitHub Desktop.
QtQuickTutorialMouseAreaUsage1.qml for moderncpp.ir tutorial
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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