首页 > 其他 > 详细

QML --》矩形框

时间:2021-08-03 18:55:46      阅读:24      评论:0      收藏:0      [点我收藏+]

1、关键字

Rectangle{}

color:颜色

border.color:边框颜色

border.width:边框宽度

radius:圆角

2、添加渐变色:

gradient: Gradient{
      GradientStop{position: 0.0; color: "black"}
      GradientStop{position: 1.0; color: "white"}
}

 

3、绘制矩形和圆角矩形

Rectangle{
    id: root
    width: 400
    height: 300

    Rectangle{
        id:rect1;
        x:12;y:12;
        width: 76;
        height: 96;
        color: "lightsteelblue";
    }
    Rectangle{
        id:rect2;
        x:112;y:12
        width: 76;
        height: 96;
        border.color: "lightsteelblue";
        border.width: 4;
        radius: 8;
    }
    Rectangle{
        id:rect3;
        x:212;y:12
        width: 76;
        height: 96;
        gradient: Gradient{
            GradientStop{position: 0.0; color: "black"}
            GradientStop{position: 1.0; color: "white"}
        }
        border.color: "lightsteelblue";
    }
}

 

3、结果

技术分享图片

 

QML --》矩形框

原文:https://www.cnblogs.com/caozewen/p/15094812.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!