qml 实现胶囊按钮(半边圆角按钮)

项目场景:

项目中,UI上要实现类似胶囊切换按钮,站在巨人的肩膀上实现了,效果如下:
在这里插入图片描述


实现细节:

宽度、高度、圆角均可自定义 其实实现是两个按钮放在了一起,只不过按钮的圆角可以自定义设置 先看按钮的实现:
import QtQuick 2.0

Rectangle {
    id: root
    height:100
    width:200
    property string title : ""
    property int textSize : 20
    property color bgColor : checked?"yellow":"gray"
    property color textColor : checked?"black":"#FFFFFF"
    color: bgColor
    property bool checked: false
    property int radiusCorners: Qt.AlignLeft | Qt.AlignRight | Qt.AlignTop | Qt.AlignBottom /* Default: */
    /*
                            Qt.AlignLeft |      Qt.AlignLeft |      Qt.AlignRight |     Qt.AlignLeft |      Qt.AlignLeft |
                            Qt.AlignRight |     Qt.AlignTop |       Qt.AlignTop |       Qt.AlignRight |     Qt.AlignRight |
              None:0        Qt.AlignTop |       Qt.AlignBottom      Qt.AlignBottom      Qt.AlignTop         Qt.AlignBottom
                            Qt.AlignBottom
        *****************     *************       ***************   ***************       *************     *****************
        *               *    *             *     *              *   *              *     *             *    *               *
        *               *   *               *   *               *   *               *   *               *   *               *
        *               *   *               *   *               *   *               *   *               *   *               *
        *               *   *               *   *               *   *               *   *               *   *               *
        *               *   *               *   *               *   *               *   *               *   *               *
        *               *    *             *     *              *   *              *    *               *    *             *
        *****************     *************       ***************   ***************     *****************     *************
    */

    Repeater {
        model: [ {
                x: 0,
                y: 0,
                visible: internal.aligns(Qt.AlignLeft | Qt.AlignTop),
                radius: root.radius
            },
            {
                x: root.width - root.radius,
                y: 0,
                visible: internal.aligns(Qt.AlignRight | Qt.AlignTop),
                radius: root.radius
            },
            {
                x: 0,
                y: root.height - root.radius,
                visible: internal.aligns(Qt.AlignLeft | Qt.AlignBottom),
                radius: root.radius
            },
            {
                x: root.width - root.radius,
                y: root.height - root.radius,
                visible: internal.aligns(Qt.AlignRight | Qt.AlignBottom),
                radius: root.radius
            } ]

        Rectangle {
            x: modelData.x; y: modelData.y
            width: modelData.radius; height: width
            visible: !modelData.visible
            color: parent.color
        }
    }
    QtObject {
        id: internal

        function aligns(direction) {
            return (root.radiusCorners & direction) === direction
        }
    }

    Text
        {
            id:content
            text: title
            font.pixelSize: textSize
            color: textColor
            anchors.centerIn: parent
        }
}
实现其实是矩形的四个角加上四个小矩形来实现各种类型圆角配置。

本文章代码如下:

import QtQuick 2.11
import QtQuick.Window 2.11

Window {
    visible: true
    width: 640
    height: 480
    
    ButtonA
    {
        id:my
        width :100
        height:80
        anchors.centerIn: parent
        //color: "red"
        radius: height/2
        radiusCorners:  Qt.AlignLeft | Qt.AlignBottom | Qt.AlignTop
        title:"btn1"
        MouseArea{
            anchors.fill: parent
            
            //            onPressed: {
            //                my.color = "gray"
            //            }
            
            //            onReleased: {
            //                my.color = "yellow"
            //            }
            
            onClicked: {
                console.debug("左边点击")
                my.checked = true;
                my2.checked = false
            }
        }
    }
    
    
    ButtonA
    {
        id:my2
        width :100
        height:80
        anchors.left: my.right
        y:my.y
        //color: "red"
        radius: height/2
        radiusCorners:  Qt.AlignRight | Qt.AlignBottom | Qt.AlignTop
        title:"btn2"
        MouseArea{
            anchors.fill: parent
       
            onClicked: {
                console.debug("右边点击")
                my.checked = false;
                my2.checked = true
            }
        }
    }
    
    Component.onCompleted:
    {
        my2.checked = true
    }
}

扩展:

实现不规则按钮也可以用qml Shape来实现。具体问题具体研究


要在QML实现多页的切换,可以使用`StackView`组件和按钮实现。`StackView`用于管理多个页面,并提供了一种简单的方式来切换页面。 以下是一个示例代码,展示了如何使用按钮来切换多个页面: ```qml import QtQuick 2.0 import QtQuick.Controls 2.15 import QtQuick.Layouts 1.15 ApplicationWindow { visible: true width: 400 height: 300 StackView { id: stackView anchors.fill: parent initialItem: page1 Component.onCompleted: { stackView.push(page1); // 初始页面 } } RowLayout { anchors.bottom: parent.bottom spacing: 10 Button { text: "Page 1" onClicked: stackView.push(page1) } Button { text: "Page 2" onClicked: stackView.push(page2) } Button { text: "Page 3" onClicked: stackView.push(page3) } } Component { id: page1 Rectangle { width: stackView.width height: stackView.height color: "lightblue" Text { text: "Page 1" font.pixelSize: 20 anchors.centerIn: parent } } } Component { id: page2 Rectangle { width: stackView.width height: stackView.height color: "lightgreen" Text { text: "Page 2" font.pixelSize: 20 anchors.centerIn: parent } } } Component { id: page3 Rectangle { width: stackView.width height: stackView.height color: "lightpink" Text { text: "Page 3" font.pixelSize: 20 anchors.centerIn: parent } } } } ``` 在上面的例子中,我们使用`StackView`作为主要的页面管理器,并在底部使用`RowLayout`来放置按钮。 每个按钮都有一个`onClicked`事件处理程序,当按钮被点击时,我们使用`stackView.push()`函数将相应的页面推入`StackView`中。 每个页面都是通过`Component`定义的,其中包含一个带有文本的矩形。你可以根据需要自定义页面的内容和样式。 通过点击按钮,你可以在应用程序中切换不同的页面。这种方式可以用于创建多页应用程序、导航界面等。
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值