12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <?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>400</width>
- <height>300</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string>智能交通监控系统</string>
- </property>
- <property name="styleSheet">
- <string notr="true">border-width:1px;
- border-style:solid;
- border-color:white;
- border-radius:10px;</string>
- </property>
- <widget class="QLabel" name="label">
- <property name="geometry">
- <rect>
- <x>90</x>
- <y>20</y>
- <width>191</width>
- <height>171</height>
- </rect>
- </property>
- <property name="styleSheet">
- <string notr="true">border-width:1px;
- border-style:solid;
- border-color:blue;
- border-radius:10px;</string>
- </property>
- <property name="text">
- <string>视频显示区</string>
- </property>
- </widget>
- <widget class="QPushButton" name="pushButton">
- <property name="geometry">
- <rect>
- <x>80</x>
- <y>202</y>
- <width>75</width>
- <height>41</height>
- </rect>
- </property>
- <property name="styleSheet">
- <string notr="true">border-width:1px;
- border-style:solid;
- border-radius:10px;
- border-top-color:#ffffff;
- border-left-color:#ffffff;
- border-bottom-color:#888888;
- border-right-color:#bbbbbb;
- </string>
- </property>
- <property name="text">
- <string>处理视频</string>
- </property>
- </widget>
- </widget>
- <resources/>
- <connections/>
- </ui>
|