12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?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>
- <widget class="QLabel" name="label">
- <property name="geometry">
- <rect>
- <x>50</x>
- <y>50</y>
- <width>281</width>
- <height>171</height>
- </rect>
- </property>
- <property name="styleSheet">
- <string notr="true">border-width:4px;
- border-style:solid;
- boder-color:red;
- border-radius:10px;
- border-left-color:yellow;
- border-right-color:pink;</string>
- </property>
- <property name="text">
- <string>视频显示区域</string>
- </property>
- </widget>
- <widget class="QPushButton" name="pushButton">
- <property name="geometry">
- <rect>
- <x>180</x>
- <y>240</y>
- <width>93</width>
- <height>28</height>
- </rect>
- </property>
- <property name="styleSheet">
- <string notr="true">border-width:2px;
- border-style:solid;
- border-randius:10px;
- border-top-color:#ffffff;
- border-left-color:#ffffff;
- border-bottom-color:#bbbbbb;
- border-right-color:#bbbbbb;
- </string>
- </property>
- <property name="text">
- <string>处理视频</string>
- </property>
- </widget>
- </widget>
- <resources/>
- <connections/>
- </ui>
|