Image Viewer

依然范特西╮ 提交于 2019-11-30 17:55:05

<?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>461</width>

<height>373</height>

</rect>

</property>

<property name="windowTitle">

<string>图片浏览器</string>

</property>

<property name="windowIcon">

<iconset>

<normaloff>icon/title-icon.png</normaloff>icon/title-icon.png</iconset>

</property>

<widget class="QWidget" name="centralWidget">

<widget class="QLabel" name="labelPicDisp">

<property name="geometry">

<rect>

<x>40</x>

<y>50</y>

<width>128</width>

<height>128</height>

</rect>

</property>

<property name="sizePolicy">

<sizepolicy hsizetype="Ignored" vsizetype="Ignored">

<horstretch>0</horstretch>

<verstretch>0</verstretch>

</sizepolicy>

</property>

<property name="text">

<string>这里将显示缩略图</string>

</property>

</widget>

<widget class="QFrame" name="frame">

<property name="geometry">

<rect>

<x>10</x>

<y>30</y>

<width>411</width>

<height>231</height>

</rect>

</property>

<property name="frameShape">

<enum>QFrame::StyledPanel</enum>

</property>

<property name="frameShadow">

<enum>QFrame::Plain</enum>

</property>

<widget class="QListWidget" name="listWidget">

<property name="geometry">

<rect>

<x>180</x>

<y>20</y>

<width>221</width>

<height>201</height>

</rect>

</property>

</widget>

</widget>

<zorder>frame</zorder>

<zorder>labelPicDisp</zorder>

</widget>

<widget class="QMenuBar" name="menuBar">

<property name="geometry">

<rect>

<x>0</x>

<y>0</y>

<width>461</width>

<height>26</height>

</rect>

</property>

<widget class="QMenu" name="menuFile">

<property name="title">

<string>文件(&amp;F)</string>

</property>

<addaction name="actionFileOpen"/>

<addaction name="actionFileClose"/>

</widget>

<addaction name="menuFile"/>

</widget>

<widget class="QStatusBar" name="statusBar"/>

<widget class="QToolBar" name="toolBar">

<property name="windowTitle">

<string>toolBar</string>

</property>

<attribute name="toolBarArea">

<enum>TopToolBarArea</enum>

</attribute>

<attribute name="toolBarBreak">

<bool>false</bool>

</attribute>

<addaction name="actionFileOpen2"/>

</widget>

<action name="actionFileOpen">

<property name="text">

<string>打开(&amp;O)</string>

</property>

<property name="shortcut">

<string>Ctrl+O</string>

</property>

</action>

<action name="actionFileClose">

<property name="text">

<string>关闭(&amp;C)</string>

</property>

<property name="toolTip">

<string>关闭(C)</string>

</property>

<property name="shortcut">

<string>Ctrl+W</string>

</property>

</action>

<action name="actionFileOpen2">

<property name="icon">

<iconset>

<normaloff>icon/open-icon.png</normaloff>icon/open-icon.png</iconset>

</property>

<property name="text">

<string>打开文件</string>

</property>

<property name="toolTip">

<string>打开文件</string>

</property>

</action>

</widget>

<resources/>

<connections/>

</ui>

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!