FluentUI/Gallery/res/qml/component/base/IconDropdownButton.qml
yxdy aa9180d289
Some checks failed
Gallery App Build / Windows (push) Has been cancelled
Gallery App Build / macOS (push) Has been cancelled
Gallery App Build / Ubuntu (push) Has been cancelled
fix: 修改样式
2025-02-19 09:20:59 +08:00

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")
}
}
}