22 lines
449 B
QML
22 lines
449 B
QML
import QtQuick 2.15
|
|
import QtQuick.Layouts
|
|
import QtQuick.Controls
|
|
import FluentUI.Controls
|
|
import FluentUI.impl
|
|
|
|
Rectangle {
|
|
id: control
|
|
anchors.fill: parent
|
|
color: "transparent"
|
|
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
onEntered: parent.color = "#000000"
|
|
onExited: parent.color = "transparent"
|
|
onClicked: {
|
|
console.log("123123")
|
|
}
|
|
}
|
|
}
|