1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>MainWindow</class>
- <widget class="QMainWindow" name="MainWindow">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>880</width>
- <height>786</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string>adcCanTool</string>
- </property>
- <widget class="QWidget" name="centralWidget">
- <layout class="QVBoxLayout" name="verticalLayout">
- <item>
- <widget class="QTabWidget" name="mainTabs">
- <property name="currentIndex">
- <number>-1</number>
- </property>
- <property name="usesScrollButtons">
- <bool>true</bool>
- </property>
- <property name="movable">
- <bool>true</bool>
- </property>
- </widget>
- </item>
- </layout>
- </widget>
- <widget class="QMenuBar" name="menuBar">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>880</width>
- <height>28</height>
- </rect>
- </property>
- <widget class="QMenu" name="menuFile">
- <property name="title">
- <string>文件</string>
- </property>
- </widget>
- <widget class="QMenu" name="menuDevice">
- <property name="title">
- <string>设备操作</string>
- </property>
- <addaction name="actionSetup"/>
- </widget>
- <addaction name="menuFile"/>
- <addaction name="menuDevice"/>
- </widget>
- <widget class="QToolBar" name="mainToolBar">
- <attribute name="toolBarArea">
- <enum>TopToolBarArea</enum>
- </attribute>
- <attribute name="toolBarBreak">
- <bool>false</bool>
- </attribute>
- </widget>
- <widget class="QStatusBar" name="statusBar"/>
- <action name="actionSetup">
- <property name="text">
- <string>&设置</string>
- </property>
- <property name="iconText">
- <string>设置</string>
- </property>
- </action>
- </widget>
- <layoutdefault spacing="6" margin="11"/>
- <resources/>
- <connections/>
- </ui>
|