Qt天气预报系统设计 1、第四部分左边的第一部分 2、第四部分左边的第二部分 3、第四部分左边的第三部分 4、对整个widget04l调整
1、第四部分左边的第一部分
1.1添加控件
拖入一个widget
,改名为widget04
作为第四部分
拖入一个widget
,改名为widget04l
,作为第四部分的左边部分
往widget04l
再拖入一个widget
,改名为widget0401
,作为第四部分的第一部分
往widget0401
里面拖入一个Label,改变它的样式表,代码如下
color: rgb ( 230 , 230 , 230 ) ;
background- color: rgb ( 57 , 173 , 173 ) ;
border- radius: 7 px;
border- bottom- right- radius: 0 px;
border- bottom- left- radius: 0 px;
下面是上面这段代码的解释
color: rgb(230, 230, 230); 设置文本的颜色 background-color: rgb(57, 173, 173);· 定义了元素背景颜色 border-radius: 7px; 创建圆角边框,所有四个角的曲率半径都是7像素 border-bottom-right-radius:0px; 设置了右下角的圆角为0像素,意味着这个角将 不会是圆角而是直角 border-bottom-left-radius:0px; 设置左下角的圆角为0像素,使得这个角也是直角
再拖入一个Label,改变样式表,代码如下
color: rgb ( 230 , 230 , 230 ) ;
background- color: rgb ( 57 , 173 , 173 ) ;
border- radius: 7 px;
border- top- right- radius: 0 px;
border- top- left- radius: 0 px;
解释如下
color: rgb(230, 230, 230); 设置文本的颜色 background-color: rgb(57, 173, 173);· 定义了元素背景颜色 border-radius: 7px; 创建圆角边框,所有四个角的曲率半径都是7像素 border-top-right-radius: 0px; 设置了右上角的圆角为0像素,意味着这个角将 不会是圆角而是直角 border-top-left-radius: 0px; 设置左上角的圆角为0像素,使得这个角也是直角
选中widget0401
这个布局,把layoutVerticalSpacing
改为0
![在这里插入图片描述](https://i-blog.csdnimg.cn/direct/d8012ea7b6ff4dadba08eab68474cd5e.png) ![在这里插入图片描述](https://i-blog.csdnimg.cn/direct/2b54e6ccf7024477a85fc52e672e3546.png)
1.2修改控件名字
2、第四部分左边的第二部分
2.1添加控件
拖入一个widget
改名为widget0402
,再拖入一个Label
改变Label的样式表,跟上面今天
那个Label一样,但背景色删掉,把图片添加进来
再拖入一个Label
,样式表改的像日期
那个标签一样,也不要背景色,然后把文字居中
2.2修改控件名字
3、第四部分左边的第三部分
3.1添加控件
拖入一个widget
,改名为widget0403
和拖入一个Label
代码如下:
color: rgb ( 255 , 255 , 255 ) ;
background- color: rgb ( 70 , 211 , 103 ) ;
border- radius: 5 px;
color: rgb(255, 255, 255); 设置文本颜色 background-color: rgb(70, 211, 103); 设置背景颜色 border-radius: 5px; 设置边框圆角半径为5像素,使元素的四个角稍微变圆
再粘贴,复制六个一样的Label
,然后修改样式表和文字
对整个widget0403
进行水平布局
和把文字居中
3.2修改控件名字
4、对整个widget04l调整
整体界面如下图所示: 第四部分左边完成!