qml自定义菜单栏实现自由拖动

在使用qml开发过程中,有时候我们需要自己定制菜单栏并且也能自由拖动,本篇介绍qml定制菜单栏实现自由拖动。下面是代码实现:

import QtQuick 2.12
import QtQuick.Window 2.12

Window {
    id: window
    visible: true
    width: 640
    height: 480
    title: qsTr("自定义标题栏实现拖动")

    //color: "transparent"
    flags: Qt.Window | Qt.WindowMinimizeButtonHint | Qt.WindowMaximizeButtonHint | Qt.FramelessWindowHint

    property int windowX //用来存储主窗口x坐标
    property int windowY //存储窗口y坐标
    property int xMouse //存储鼠标x坐标
    property int yMouse //存储鼠标y坐标
    //标题栏
    Rectangle {
        id: titleBar
        height: 48
        width: parent.width - 96
        color: "#CFD2DC"
        anchors.top: parent.top
        anchors.left: parent.left
        Text {
            id: titleText
            text: qsTr("自定义标题栏实现拖动")
            anchors.centerIn: parent
        }

        MouseArea { //为窗口添加鼠标事件
            anchors.fill: parent
            acceptedButtons: Qt.LeftButton //只处理鼠标左键
            property point clickPos: "0,0"
            onPressed: { //接收鼠标按下事件
                clickPos = Qt.point(mouse.x, mouse.y)
            }
            onPositionChanged: { //鼠标按下后改变位置
                //鼠标偏移量
                var delta = Qt.point(mouse.x-clickPos.x, mouse.y-clickPos.y)

                window.setX(window.x+delta.x)
                window.setY(window.y+delta.y)

            }
        }
    }

    //关闭按钮
    MouseArea{
        id: imgWinClose
        hoverEnabled: true
        cursorShape: Qt.PointingHandCursor
        anchors.top: parent.top
        anchors.right: parent.right
        width: 48
        height: 48

        Rectangle{
            anchors.fill: parent
            color: parent.containsMouse ? "#FF3E3D" : "#00000000"
        }

        Image{
            z: 1
            anchors.centerIn: parent
            sourceSize.width: 48
            sourceSize.height: 48
            source: parent.containsMouse ? "qrc:/image/button_close.svg" : "qrc:/image/button_close.svg"
        }

        onClicked: {
            console.log("close window================")
            close()
        }
    }
    //最小化按钮
    MouseArea{
        id: imgWinMini
        hoverEnabled: true
        cursorShape: Qt.PointingHandCursor
        anchors.top: parent.top
        anchors.right: parent.right
        anchors.rightMargin: 48
        width: 48
        height: 48

        Rectangle{
            anchors.fill: parent
            color: parent.containsMouse ? "#CFD2DC" : "#00000000"
        }

        Image{
            z: 1
            anchors.centerIn: parent
            sourceSize.width: 48
            sourceSize.height: 48
            source: parent.containsMouse ? "qrc:/image/button_minimize.svg" : "qrc:/image/button_minimize.svg"
        }

        onClicked: {
            console.log("max window================")
            showMinimized()
        }
    }
}

运行结果

 

  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
实现自定义标题栏可以通过使用QML中的Rectangle等组件来实现,并在其中添加需要的控件,例如按钮、标签、图标等。同时,为了实现与原生窗体相似的功能,可以使用QML中的Window组件,并将其属性设置为透明,然后在自定义标题栏中添加控件时,将它们放置在Window组件的边缘位置,以达到与原生窗体相似的效果。此外,还可以通过使用QML中的MouseArea组件来实现拖拽窗口的功能。具体实现方法可以参考以下示例代码: ``` import QtQuick 2.15 import QtQuick.Window 2.15 Window { visible: true width: 640 height: 480 title: "" Rectangle { id: titleBar width: parent.width height: 30 color: "#2d2d2d" MouseArea { anchors.fill: parent drag.target: parent } Label { text: "Custom Title Bar" font.bold: true color: "#ffffff" anchors.centerIn: parent } Button { text: "X" font.bold: true color: "#ffffff" anchors.right: parent.right anchors.verticalCenter: parent.verticalCenter onClicked: { Qt.quit(); } } } Rectangle { id: content anchors.top: titleBar.bottom anchors.left: parent.left anchors.right: parent.right anchors.bottom: parent.bottom color: "#ffffff" } } ``` 在这个示例中,我们使用了一个Rectangle组件作为自定义标题栏,并在其中添加了一个Label和一个Button。为了实现拖拽窗口的功能,我们在自定义标题栏上添加了一个MouseArea组件,并将drag.target设置为父组件。另外,我们还使用了另一个Rectangle组件作为窗口的内容区域,并通过anchors属性将其与自定义标题栏对齐。最后,我们将Window的title属性设置为空字符串,以隐藏原生窗口的标题栏

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值