简述QCheckBox继承自QAbstractButton,它提供了一个带文本标签的复选框。 QCheckBox(复选框)和QRadioButton(单选框)都是选项按钮。这是因为它们都可以在开(选中)或者关(未选中)之间切换。区别是对用户选择的限制:单选框定义了“多选一”的选择,而复选框提供的是“ ...
分类:
其他好文 时间:
2020-06-18 12:53:44
阅读次数:
60
外湖莲子长参差,霁山青处鸥飞。 水天溶漾画桡迟,人影鉴中移。 桃叶浅声双唱,杏红深色轻衣。 小荷障面避斜晖,分得翠阴归。 Spring in Painted Hall The lotus blooms in outer lake grow high and low; After the rain o ...
分类:
其他好文 时间:
2020-06-18 01:32:53
阅读次数:
75
一、前言 findContours函数的参数在众多博客中都有详细介绍,本篇随笔主要针对个别函数参数做说明,并记录相关的输出参数的部分细节 二、函数介绍 void findContours( InputArray image, OutputArrayOfArrays contours, OutputA ...
分类:
其他好文 时间:
2020-06-17 19:56:47
阅读次数:
58
单行文本省略号: overflow: hidden;text-overflow:ellipsis;white-space: nowrap; 多行文本省略号: display: -webkit-box; -webkit-line-clamp: 8; -webkit-box-orient: vertic ...
分类:
其他好文 时间:
2020-06-17 10:50:21
阅读次数:
83
1、如果是只需要显示一行+省略号,那么就容易啦 { overflow:hidden; text-overflow:ellipsis; white-space:nowrap; } 2、如果是需要显示2行或者更多+省略号 { overflow:hidden; text-overflow:ellipsis ...
分类:
Web程序 时间:
2020-06-16 13:28:44
阅读次数:
71
谈谈事件的产生和传递和响应? 🔥事件的产生 我们知道UIApplication、UIViewController、UIView都是UIResponder的子类,都是可以处理事件的。在发生触摸事件的时候系统会先将该事件交给UIApplication处理,通常UIApplication先将事件交给UI ...
分类:
其他好文 时间:
2020-06-15 12:32:36
阅读次数:
63
@mixin text-ellipsis() { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } @mixin text-ellipsis-multi($line) { display: -webkit-box; o ...
分类:
Web程序 时间:
2020-06-11 16:34:45
阅读次数:
77
#include <iostream> using namespace std; void main() { cout<<"hello world"<<endl; } 1 #include <iostream> 2 using namespace std; 3 void main() 4 { 5 c ...
分类:
编程语言 时间:
2020-06-10 21:05:01
阅读次数:
65
ylbtech-Code-Helper:ZipHelper.cs 1.返回顶部 1、 using System; using System.Text; using System.Collections; using System.Collections.Generic; using System.D ...
分类:
其他好文 时间:
2020-06-10 19:15:59
阅读次数:
58
1. 强制不换行 div{ white-space:nowrap; } 2. 自动换行 div{ word-wrap: break-word; word-break: normal; } 3. 强制英文单词断行 div{ word-break:break-all; } ...
分类:
Web程序 时间:
2020-06-10 11:03:26
阅读次数:
103