cinfodlg.ui
来自「可以实现对学生信息任意添加」· UI 代码 · 共 76 行
UI
76 行
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>CInfoDlg</class>
<widget class="QDialog" name="CInfoDlg">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>270</width>
<height>135</height>
</rect>
</property>
<property name="windowTitle">
<string>Student Information</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
<widget class="QLabel" name="label">
<property name="text">
<string>Name:</string>
</property>
</widget>
</item>
<item>
<widget class="QLineEdit" name="edtName"/>
</item>
</layout>
</item>
<item>
<widget class="QDialogButtonBox" name="buttonBox">
<property name="standardButtons">
<set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
</property>
</widget>
</item>
</layout>
</widget>
<resources/>
<connections>
<connection>
<sender>buttonBox</sender>
<signal>accepted()</signal>
<receiver>CInfoDlg</receiver>
<slot>accept()</slot>
<hints>
<hint type="sourcelabel">
<x>135</x>
<y>105</y>
</hint>
<hint type="destinationlabel">
<x>98</x>
<y>91</y>
</hint>
</hints>
</connection>
<connection>
<sender>buttonBox</sender>
<signal>rejected()</signal>
<receiver>CInfoDlg</receiver>
<slot>reject()</slot>
<hints>
<hint type="sourcelabel">
<x>238</x>
<y>105</y>
</hint>
<hint type="destinationlabel">
<x>209</x>
<y>85</y>
</hint>
</hints>
</connection>
</connections>
</ui>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?