一,界面控件示意图
界面主要由按钮QPushButton,标签QLabel,列表QListWidget
要注意的是QListWidget既是实现好友列表的控件,也是实现聊天气泡的控件
二,控件样式
QPushButton#btn_name
{
border:none;
}
QPushButton#btn_close
{
border:1px;
background-color: rgb(255, 255, 255);
}
QPushButton#btn_close:hover
{
background-color: rgb(239,239,240);
}
QPushButton#btn_send
{
border-radius: 1px;
background-color: rgb(18,183,245);
}
QPushButton#btn_send:hover
{
background-color: rgb(71,200,248);
}
QPushButton#btn_xialaChoose
{
border-left: 1px solid rgb(255, 255, 255);
border-top: none;
border-bottom: none;
border-right:none ;
background-color: rgb(18,183,245);
}
QPushButton#btn_xialaChoose:hover
{
background-color: rgb(71,200,248);
}