-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalendar.ui
64 lines (64 loc) · 1.36 KB
/
calendar.ui
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
53
54
55
56
57
58
59
60
61
62
63
64
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>Dialog</class>
<widget class="QDialog" name="Dialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>371</width>
<height>295</height>
</rect>
</property>
<property name="windowTitle">
<string>Calendar</string>
</property>
<widget class="QCalendarWidget" name="calendarWidget">
<property name="geometry">
<rect>
<x>20</x>
<y>20</y>
<width>331</width>
<height>221</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">font: 75 9pt "MS Shell Dlg 2";
background-color: rgb(40, 192, 200);
color: rgb(0, 0, 0);</string>
</property>
</widget>
<widget class="QPushButton" name="btn_submit">
<property name="geometry">
<rect>
<x>110</x>
<y>250</y>
<width>144</width>
<height>31</height>
</rect>
</property>
<property name="text">
<string>Submit</string>
</property>
</widget>
</widget>
<resources/>
<connections>
<connection>
<sender>btn_submit</sender>
<signal>clicked()</signal>
<receiver>Dialog</receiver>
<slot>close()</slot>
<hints>
<hint type="sourcelabel">
<x>218</x>
<y>276</y>
</hint>
<hint type="destinationlabel">
<x>346</x>
<y>282</y>
</hint>
</hints>
</connection>
</connections>
</ui>