-
Notifications
You must be signed in to change notification settings - Fork 7
/
ch05-00.htm
48 lines (39 loc) · 2.41 KB
/
ch05-00.htm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=UTF-8" http-equiv="content-type">
<title>ch05-00</title>
<link href="css/style.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="thumbnailviewer.css" type="text/css" />
<script src="thumbnailviewer.js" type="text/javascript">
/***********************************************
* Image Thumbnail Viewer Script- © Dynamic Drive (www.dynamicdrive.com)
* This notice must stay intact for legal use.
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/
</script>
</head>
<div class="os1">第5章 简单控件的使用 </div>
<br />
学习完 Qt 的基础知识后,再学习图形界面编程就会比较轻松了。本章的简单控件是指我们在对话框里常遇到的
按钮类控件(包括按压按钮、单选框、复选框、命令链接按钮等)、
输入类控件(组合框、单行编辑控件、丰富文本编辑控件、计数器 SpinBox、滑动条等)、
显示类控件(标签、文本浏览控件、日历、LCD 数字显示、进度条等)。这些控件的特点是常见而且相关的数据处理比较简单,因此称之为简单控件。
本章最后简单介绍一下 Qt 资源文件的使用,为按钮添加图标,并利用标签控件显示资源里的图片。
<br />
<br />
本章内容安排:5.1 节主要介绍按钮类的控件,5.2 节详细介绍单行编辑控件的多种使用方式,5.3 节讲解丰富文本编辑控件和文本浏览控件,
5.4 节介绍其他输入控件,如组合框、计数器和滑动条等,5.5 节介绍显示类的控件使用,5.6 节简单介绍 Qt 资源文件的使用。
<br />
<br />
<br />
<table style="text-align: left; width: 100%;" border="0" cellpadding="2" cellspacing="2">
<tbody>
<tr>
<td style="width: 40%;"><div style="text-align: center;"><a href="ch04-06.htm"><img class="pic" style="width: 32px; height: 32px;" alt="prev" src="images/pics/prev.png" /></a></div></td>
<td style="width: 20%;"><div style="text-align: center;"><a href="contents.htm"><img class="pic" style="width: 32px; height: 32px;" alt="contents" src="images/pics/contents.png" /></a></div></td>
<td style="width: 40%;"><div style="text-align: center;"><a href="ch05-01.htm"><img class="pic" style="width: 32px; height: 32px;" alt="next" src="images/pics/next.png" /></a></div></td>
</tr>
</tbody>
</table>
</html>