QCheckBox样式表

QCheckBox

{

Color:red;

Background-color:rgb(0,0,0);

}

 

//选择框

QCheckBox::indicator {

Width:13px;

Height:13px;

}

//未选中状态的选择框

QCheckBox::indicator:unchecked

{

}

QCheckBox::indicator:unchecked :hover

{未选中状态下的鼠标悬停

}

QCheckBox::indicator:unchecked:pressed

{未选中状态下的点击

}

 

//选中状态的选择框

QCheckBox::indicator:checked

{

}

QCheckBox::indicator:checked :hover

{选中状态下的鼠标悬停

}

QCheckBox::indicator:checked:pressed

{选中状态下的点击

}

 

QCheckBox::indicator:indeterminate:hover

{

}

QCheckBox::indicator: indeterminate:pressed

{

}

发布了104 篇原创文章 · 获赞 22 · 访问量 4万+

猜你喜欢

转载自blog.csdn.net/qq_41672557/article/details/103285407