QWidget and QFrame ->border-image and border-width

来源:互联网 发布:免费网络电视机顶盒 编辑:程序博客网 时间:2024/06/06 01:37

#LoginWindow

{

border-image: url(:/ui_resources/ui_resources/Shadow.png);

border-width:20px;

}

#widget_7

{

border-image: url(:/ui_resources/ui_resources/login_bg.png);

border-width:20px;

}


#frame_7

{

border-image: url(:/ui_resources/ui_resources/login_bg.png);

border-width:20px;

padding:-20px;

}


frame_7 和widget_7的一个差别是

-->frame_7时QFrame的内边里会有20px的border-width, 用padding:-20px;可以去掉20px的border-width

-->widget_7时QWidget的内边里没有border-width,但是有倒角实现9宫格图


原创粉丝点击