9f17d59e
陈明泉
no message
|
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
49
50
51
52
|
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>IshowCourses</class>
<widget class="QWidget" name="IshowCourses">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>900</width>
<height>600</height>
</rect>
</property>
<property name="windowTitle">
<string>Form</string>
</property>
<property name="styleSheet">
<string notr="true">background-color: rgb(240, 240, 240);</string>
</property>
<layout class="QHBoxLayout" name="horizontalLayout_3">
<property name="spacing">
<number>0</number>
</property>
<property name="margin">
<number>0</number>
</property>
<item>
<widget class="QWidget" name="widget_meun" native="true">
<property name="minimumSize">
<size>
<width>220</width>
<height>0</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>220</width>
<height>16777215</height>
</size>
</property>
<layout class="QVBoxLayout" name="verticalLayout_2">
<property name="spacing">
<number>0</number>
</property>
<property name="margin">
<number>0</number>
</property>
<item>
<widget class="QTreeWidget" name="treeWidget">
<property name="styleSheet">
<string notr="true">QTreeWidget{
margin-left:0px;
padding:0px;
|
6e10e93e
陈明泉
no message
|
53
|
background-color: rgb(245, 245, 250);
|
9f17d59e
陈明泉
no message
|
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
}
QTreeWidget::item {
height:30px;
margin:0px;
padding:0px;
}
QTreeWidget::item:hover {
show-decoration-selected:1;
background-color: rgb(50, 150, 250);
selection-background-color: rgb(49, 58, 66);
color: rgb(255,255,255);
}
QTreeWidget::item:selected {
show-decoration-selected:1;
selection-background-color: rgb(37, 44, 50);
|
6e10e93e
陈明泉
no message
|
73
74
|
color: rgb(30,190,30);
background-color: rgb(245, 245, 250);
|
9f17d59e
陈明泉
no message
|
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
}</string>
</property>
<property name="autoScrollMargin">
<number>15</number>
</property>
<property name="indentation">
<number>10</number>
</property>
<property name="rootIsDecorated">
<bool>false</bool>
</property>
<attribute name="headerVisible">
<bool>false</bool>
</attribute>
<attribute name="headerDefaultSectionSize">
<number>220</number>
</attribute>
<attribute name="headerMinimumSectionSize">
<number>20</number>
</attribute>
<column>
<property name="text">
<string notr="true">1</string>
</property>
</column>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<widget class="QWidget" name="widget_content" native="true">
|
9f17d59e
陈明泉
no message
|
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
|
<property name="styleSheet">
<string notr="true">backgroung-color:rgba(240,240,240,255);</string>
</property>
<layout class="QGridLayout" name="gridLayout">
<property name="leftMargin">
<number>9</number>
</property>
<property name="topMargin">
<number>30</number>
</property>
<property name="rightMargin">
<number>9</number>
</property>
<property name="bottomMargin">
<number>30</number>
</property>
<item row="2" column="0">
<spacer name="verticalSpacer">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeType">
<enum>QSizePolicy::Expanding</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>17</width>
|
d6ba1152
陈明泉
1.3.1PC老师端正式上线发布版;
|
134
|
<height>10</height>
|
9f17d59e
陈明泉
no message
|
135
136
137
138
|
</size>
</property>
</spacer>
</item>
|
d6ba1152
陈明泉
1.3.1PC老师端正式上线发布版;
|
139
140
141
142
|
<item row="0" column="0">
<spacer name="verticalSpacer_2">
<property name="orientation">
<enum>Qt::Vertical</enum>
|
9f17d59e
陈明泉
no message
|
143
|
</property>
|
d6ba1152
陈明泉
1.3.1PC老师端正式上线发布版;
|
144
145
|
<property name="sizeType">
<enum>QSizePolicy::Expanding</enum>
|
9f17d59e
陈明泉
no message
|
146
|
</property>
|
d6ba1152
陈明泉
1.3.1PC老师端正式上线发布版;
|
147
148
149
150
151
|
<property name="sizeHint" stdset="0">
<size>
<width>17</width>
<height>10</height>
</size>
|
9f17d59e
陈明泉
no message
|
152
|
</property>
|
d6ba1152
陈明泉
1.3.1PC老师端正式上线发布版;
|
153
|
</spacer>
|
9f17d59e
陈明泉
no message
|
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
|
</item>
<item row="3" column="0">
<layout class="QHBoxLayout" name="horizontalLayout_2">
<item>
<spacer name="horizontalSpacer_9">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeType">
<enum>QSizePolicy::Fixed</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QPushButton" name="pushButton_last">
<property name="minimumSize">
<size>
<width>30</width>
<height>25</height>
</size>
</property>
<property name="toolTip">
<string>Previous</string>
</property>
<property name="styleSheet">
<string notr="true">QPushButton{
border-image: url(:Images/ChatArea/icon_left_nomal.png);
}
QPushButton:hover{
border-image: url(:Images/ChatArea/icon_left_hover.png);
}
</string>
</property>
<property name="text">
<string/>
</property>
</widget>
</item>
<item>
<spacer name="horizontalSpacer_6">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QLabel" name="label_page">
|
d6ba1152
陈明泉
1.3.1PC老师端正式上线发布版;
|
214
215
216
217
218
219
|
<property name="maximumSize">
<size>
<width>16777215</width>
<height>25</height>
</size>
</property>
|
9f17d59e
陈明泉
no message
|
220
221
222
|
<property name="font">
<font>
<family>Arial</family>
|
d6ba1152
陈明泉
1.3.1PC老师端正式上线发布版;
|
223
|
<pointsize>12</pointsize>
|
9f17d59e
陈明泉
no message
|
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
|
</font>
</property>
<property name="text">
<string/>
</property>
</widget>
</item>
<item>
<spacer name="horizontalSpacer_7">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QPushButton" name="pushButton_next">
<property name="minimumSize">
<size>
<width>30</width>
<height>25</height>
</size>
</property>
<property name="toolTip">
<string>Next</string>
</property>
<property name="styleSheet">
<string notr="true">QPushButton{
border-image: url(:Images/ChatArea/icon_right_nomal.png);
}
QPushButton:hover{
border-image: url(:Images/ChatArea/icon_right_hover.png);
}
</string>
</property>
<property name="text">
<string/>
</property>
</widget>
</item>
<item>
<spacer name="horizontalSpacer_10">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeType">
<enum>QSizePolicy::Fixed</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
</layout>
</item>
|
d6ba1152
陈明泉
1.3.1PC老师端正式上线发布版;
|
288
289
290
291
|
<item row="1" column="0">
<layout class="QHBoxLayout" name="horizontalLayout_4">
<property name="leftMargin">
<number>6</number>
|
9f17d59e
陈明泉
no message
|
292
|
</property>
|
d6ba1152
陈明泉
1.3.1PC老师端正式上线发布版;
|
293
294
|
<property name="topMargin">
<number>20</number>
|
9f17d59e
陈明泉
no message
|
295
|
</property>
|
d6ba1152
陈明泉
1.3.1PC老师端正式上线发布版;
|
296
297
|
<property name="rightMargin">
<number>6</number>
|
9f17d59e
陈明泉
no message
|
298
|
</property>
|
d6ba1152
陈明泉
1.3.1PC老师端正式上线发布版;
|
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
|
<item>
<spacer name="horizontalSpacer_8">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeType">
<enum>QSizePolicy::Expanding</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>13</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QWebView" name="webView">
<property name="enabled">
<bool>false</bool>
</property>
<property name="styleSheet">
<string notr="true">/*background-color: rgba(250, 250, 250, 255);*/</string>
</property>
<property name="url">
<url>
<string>about:blank</string>
</url>
</property>
</widget>
</item>
<item>
<spacer name="horizontalSpacer_5">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeType">
<enum>QSizePolicy::Expanding</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>13</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
</layout>
|
9f17d59e
陈明泉
no message
|
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
|
</item>
</layout>
<zorder>verticalSpacer</zorder>
<zorder>verticalSpacer_2</zorder>
</widget>
</item>
</layout>
</widget>
<customwidgets>
<customwidget>
<class>QWebView</class>
<extends>QWidget</extends>
<header>QtWebKit/QWebView</header>
</customwidget>
</customwidgets>
<resources/>
<connections/>
</ui>
|