1 Star 0 Fork 0

glm-001/shenntoufromgithub

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
datadisplay.ui 23.52 KB
一键复制 编辑 原始数据 按行查看 历史
glm-001 提交于 2024-09-13 10:35 +08:00 . resetcodes
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>datadisplay</class>
<widget class="QWidget" name="datadisplay">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>1876</width>
<height>880</height>
</rect>
</property>
<property name="windowTitle">
<string>Form</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<property name="spacing">
<number>0</number>
</property>
<property name="leftMargin">
<number>0</number>
</property>
<property name="topMargin">
<number>11</number>
</property>
<property name="rightMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item>
<widget class="QFrame" name="frame_center">
<property name="styleSheet">
<string notr="true">QFrame
{
background-color:rgba(255,255,255,0);
border-radius:7px;
}</string>
</property>
<property name="frameShape">
<enum>QFrame::StyledPanel</enum>
</property>
<property name="frameShadow">
<enum>QFrame::Raised</enum>
</property>
<layout class="QVBoxLayout" name="verticalLayout_13" stretch="2,19,2">
<property name="spacing">
<number>0</number>
</property>
<property name="leftMargin">
<number>6</number>
</property>
<property name="topMargin">
<number>0</number>
</property>
<property name="rightMargin">
<number>6</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item>
<widget class="QFrame" name="frame_search">
<property name="styleSheet">
<string notr="true">#frame_search
{
padding-left:30px;
}
QLabel
{
font-family:DengXian;
color:#666666;
font-size:12px;
}
/*QComboBox*/
/*-----------------------------------------*/
QComboBox
{
font-family:DengXian;
color:#999999;
font-size:14px;
border-color:#dcdbec;
border-style: solid;
border-width: 0.5 0.5 0.5 0.5;
border-radius:2px;
padding-left: 12px;
}
QComboBox:enabled
{
background-color:#fdfdfd;
}
QComboBox:disabled
{
background-color:#faf9fc;
}
/*下拉按钮*/
QComboBox::drop-down
{
margin-right: 30px;
border: none;
}
QComboBox::down-arrow
{
width : 16px;
height: 9px;
border-image: url(:/ico/down-arrow.png);
}
/*QcomboBox 下拉框样式*/
QComboBox QAbstractItemView
{
font-family:DengXian;
color:#999999;
font-size:14px;
border: 1px solid rgba(0, 0, 0, 10%);
border-radius: 2px;
padding: 5px;
background-color: #FFFFFF;
}
QComboBox QAbstractItemView::item
{
height: 30px;
}
/*QComboBox下拉框选中样式*/
QComboBox QAbstractItemView::item:selected
{
background: rgba( 0, 0, 0, 3% );
color: #000000;
}
/*QLineEdit*/
/*----------------------------------------------------------------*/
QLineEdit
{
width:260px;
height:30px;
font-family:DengXian;
color:#999999;
font-size:14px;
padding-left: 12px;
border:1px solid;
border-color:#dcdbec;
border-radius:2px;
}
QLineEdit:enabled
{
background-color:#ffffff;
}
QLineEdit:disableD
{
background-color:#faf9fc;
}</string>
</property>
<property name="frameShape">
<enum>QFrame::StyledPanel</enum>
</property>
<property name="frameShadow">
<enum>QFrame::Raised</enum>
</property>
<layout class="QHBoxLayout" name="horizontalLayout_32">
<property name="leftMargin">
<number>0</number>
</property>
<property name="topMargin">
<number>0</number>
</property>
<property name="rightMargin">
<number>30</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item>
<widget class="QLabel" name="label_15">
<property name="styleSheet">
<string notr="true">width:124px;
height:25px;
font-family:Alibaba PuHuiTi 2.0;
font-weight:55;
color:#274e96;
font-size:24px;</string>
</property>
<property name="text">
<string>请选择开始日期</string>
</property>
</widget>
</item>
<item>
<widget class="QDateEdit" name="dateEdit_start">
<property name="minimumSize">
<size>
<width>172</width>
<height>40</height>
</size>
</property>
<property name="styleSheet">
<string notr="true">#dateEdit_start
{
background-color: rgb(255, 255, 255);
font-size:24px;
padding-left:3px;
padding-right:3px;
border-radius:4px;
border:1px solid #507efc;
color:#274e96;
}
#dateEdit_start::down-button
{
subcontrol-positon:left;
width:35px;
height:35px;
}
#dateEdit_start::drop-down
{
border:none;
margin-right:1px;
width:40px;
}
#dateEdit_start::down-arrow
{
image:url(:/resource/img/date3.png);
}
#qt_calendar_navigationbar {
background: rgba(0, 120, 215, 255);
}
QToolButton {
background: rgba(0, 120, 215, 255);
}
QMenu{
background: rgba(215, 215, 215, 255);
}
QCalendarWidget QTableView
{
alternate-background-color:rgb(184, 184, 184);
background-color:rgb(255, 255, 255);
border:none;
border:1px solid ;
border-color: rgb(213, 213, 213);
}
</string>
</property>
<property name="frame">
<bool>true</bool>
</property>
<property name="buttonSymbols">
<enum>QAbstractSpinBox::UpDownArrows</enum>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="label_17">
<property name="styleSheet">
<string notr="true">width:124px;
height:25px;
font-family:Alibaba PuHuiTi 2.0;
font-weight:55;
color:#274e96;
font-size:24px;</string>
</property>
<property name="text">
<string>请选择结束日期</string>
</property>
</widget>
</item>
<item>
<widget class="QDateEdit" name="dateEdit_stop">
<property name="minimumSize">
<size>
<width>172</width>
<height>40</height>
</size>
</property>
<property name="styleSheet">
<string notr="true">#dateEdit_stop
{
background-color: rgb(255, 255, 255);
font-size:24px;
padding-left:3px;
padding-right:3px;
border-radius:4px;
border:1px solid #507efc;
color:#274e96;
}
#dateEdit_stop::down-button
{
subcontrol-positon:left;
width:35px;
height:35px;
}
#dateEdit_stop::drop-down
{
border:none;
margin-right:1px;
width:40px;
}
#dateEdit_stop::down-arrow
{
image:url(:/resource/img/date3.png);
}
#qt_calendar_navigationbar {
background: rgba(0, 120, 215, 255);
}
QToolButton {
background: rgba(0, 120, 215, 255);
}
QMenu{
background: rgba(215, 215, 215, 255);
}
QCalendarWidget QTableView
{
alternate-background-color:rgb(184, 184, 184);
background-color:rgb(255, 255, 255);
border:none;
border:1px solid ;
border-color: rgb(213, 213, 213);
}
</string>
</property>
<property name="buttonSymbols">
<enum>QAbstractSpinBox::UpDownArrows</enum>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="pushButton_4">
<property name="minimumSize">
<size>
<width>90</width>
<height>40</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>16777215</width>
<height>40</height>
</size>
</property>
<property name="styleSheet">
<string notr="true">width:70px;
height:40px;
background:#ffffff;
border:1px solid;
border-color:#507efc;
border-radius:4px;
font-family:Microsoft YaHei UI;
font-weight:75;
color:#274e96;
font-size:18px;</string>
</property>
<property name="text">
<string>确定</string>
</property>
</widget>
</item>
<item>
<spacer name="horizontalSpacer">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QPushButton" name="pushButton_7">
<property name="minimumSize">
<size>
<width>90</width>
<height>40</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>16777215</width>
<height>40</height>
</size>
</property>
<property name="styleSheet">
<string notr="true">width:70px;
height:40px;
background:#ffffff;
border:1px solid;
border-color:#507efc;
border-radius:4px;
font-family:Microsoft YaHei UI;
font-weight:75;
color:#274e96;
font-size:18px;</string>
</property>
<property name="text">
<string>查看结果</string>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="pushButton_5">
<property name="minimumSize">
<size>
<width>90</width>
<height>40</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>16777215</width>
<height>40</height>
</size>
</property>
<property name="styleSheet">
<string notr="true">width:70px;
height:40px;
background:#ffffff;
border:1px solid;
border-color:#507efc;
border-radius:4px;
font-family:Microsoft YaHei UI;
font-weight:75;
color:#274e96;
font-size:18px;</string>
</property>
<property name="text">
<string>报表生成</string>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="pushButton_6">
<property name="minimumSize">
<size>
<width>90</width>
<height>40</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>16777215</width>
<height>40</height>
</size>
</property>
<property name="styleSheet">
<string notr="true">width:70px;
height:40px;
background:#ffffff;
border:1px solid;
border-color:#507efc;
border-radius:4px;
font-family:Microsoft YaHei UI;
font-weight:75;
color:#274e96;
font-size:18px;</string>
</property>
<property name="text">
<string>所有报表</string>
</property>
</widget>
</item>
<item>
<spacer name="horizontalSpacer_56">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeType">
<enum>QSizePolicy::Maximum</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
</layout>
</widget>
</item>
<item>
<widget class="QFrame" name="frame_content">
<property name="maximumSize">
<size>
<width>1856</width>
<height>780</height>
</size>
</property>
<property name="frameShape">
<enum>QFrame::StyledPanel</enum>
</property>
<property name="frameShadow">
<enum>QFrame::Raised</enum>
</property>
<layout class="QHBoxLayout" name="horizontalLayout_6" stretch="0">
<property name="spacing">
<number>0</number>
</property>
<property name="leftMargin">
<number>0</number>
</property>
<property name="topMargin">
<number>0</number>
</property>
<property name="rightMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item>
<widget class="QFrame" name="frame_tableview">
<property name="maximumSize">
<size>
<width>16777215</width>
<height>785</height>
</size>
</property>
<property name="styleSheet">
<string notr="true">QFrame#frame_material
{
background-color: #ffffff;
}</string>
</property>
<property name="frameShape">
<enum>QFrame::StyledPanel</enum>
</property>
<property name="frameShadow">
<enum>QFrame::Raised</enum>
</property>
<widget class="QTableView" name="tableView">
<property name="geometry">
<rect>
<x>30</x>
<y>0</y>
<width>1840</width>
<height>778</height>
</rect>
</property>
<property name="minimumSize">
<size>
<width>1700</width>
<height>778</height>
</size>
</property>
<property name="styleSheet">
<string notr="true">QTableView
{
font-family:DengXian;
color:#323232;
font-size:16px;
border: 1px solid #eceff6;
border-radius:0px;
selection-color : #323232;
selection-background-color : #ffffff;
background-color: #ffffff;
padding: 0px;
alternate-background-color:#f8f9ff;
selection-background-color: #e8f0ff;
}
QTableView::section
{
border-left:1px solid red;
}
QHeaderView
{
font-family:DengXian;
font : bold 10pt;
font-weight:700;
font-size:16px;
color:#8185a9;
border : 0px solid #F8FAFE;
background-color: #ffffff;
min-height:55px;
}
QHeaderView::section
{
font-family:DengXian;
font : bold 10pt;
font-weight:700;
font-size:16px;
color:#8185a9;
background-color: #f8f9ff;
border-left:0px solid #a3badc;
border-right:1px solid #a3badc;
border-top:0px solid #FFFFFF;
border-bottom:1px solid #eceff6;
padding-left:10px;
}
QScrollArea
{
background-color: rgb(255, 255, 255);
}
QScrollBar:vertical
{
border-color: #F8FAFE;
border-width: 0px;
border-style: solid;
background-color: #F8FAFE;
width: 5px;
}
QScrollBar::handle:vertical
{
background-color: #f4f7f9;
min-height: 25px;
}
QTableView::item
{
border-left:0px solid #a3badc;
border-right:1px solid #a3badc;
border-top:0px solid #eceff6;
border-bottom:1px solid #eceff6;
min-height:56px;
}
QTableView::list-item
{
border-left:0px solid #a3badc;
border-right:0px solid #a3badc;
border-top:0px solid #eceff6;
border-bottom:1px solid #eceff6;
min-height:56px;
}
QTableView::item:selected
{
background-color: #eff5fe;
}
</string>
</property>
<property name="horizontalScrollBarPolicy">
<enum>Qt::ScrollBarAlwaysOff</enum>
</property>
<property name="alternatingRowColors">
<bool>false</bool>
</property>
<property name="selectionMode">
<enum>QAbstractItemView::SingleSelection</enum>
</property>
<property name="selectionBehavior">
<enum>QAbstractItemView::SelectRows</enum>
</property>
<property name="showGrid">
<bool>false</bool>
</property>
<property name="cornerButtonEnabled">
<bool>false</bool>
</property>
<attribute name="horizontalHeaderStretchLastSection">
<bool>true</bool>
</attribute>
<attribute name="verticalHeaderVisible">
<bool>false</bool>
</attribute>
<attribute name="verticalHeaderDefaultSectionSize">
<number>54</number>
</attribute>
</widget>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<widget class="QFrame" name="frame_2">
<property name="minimumSize">
<size>
<width>0</width>
<height>0</height>
</size>
</property>
<property name="styleSheet">
<string notr="true"/>
</property>
<property name="frameShape">
<enum>QFrame::StyledPanel</enum>
</property>
<property name="frameShadow">
<enum>QFrame::Raised</enum>
</property>
<layout class="QHBoxLayout" name="horizontalLayout_4" stretch="5,0,0,0,1,0,0,0,1,0,0,0,5">
<property name="topMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>9</number>
</property>
<item>
<spacer name="horizontalSpacer_57">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QPushButton" name="pushButton">
<property name="minimumSize">
<size>
<width>93</width>
<height>28</height>
</size>
</property>
<property name="styleSheet">
<string notr="true">border-radius:4px;
font-family:DengXian;
color:#000000;
font-size:18px;
width:100px;
height:40px;
border:1px solid #507efc;
color:#274e96;</string>
</property>
<property name="text">
<string>上一页</string>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="label">
<property name="minimumSize">
<size>
<width>40</width>
<height>0</height>
</size>
</property>
<property name="styleSheet">
<string notr="true">font-family:Microsoft YaHei UI;
font-weight:55;
color:#274e96;
font-size:18px;</string>
</property>
<property name="text">
<string>0</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="pushButton_2">
<property name="minimumSize">
<size>
<width>93</width>
<height>28</height>
</size>
</property>
<property name="styleSheet">
<string notr="true">
border-radius:4px;
font-family:DengXian;
color:#274e96;
font-size:18px;
width:100px;
height:40px;
border:1px solid #507efc;</string>
</property>
<property name="text">
<string>下一页</string>
</property>
</widget>
</item>
<item>
<spacer name="horizontalSpacer_58">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QPushButton" name="pushButton_3">
<property name="minimumSize">
<size>
<width>93</width>
<height>28</height>
</size>
</property>
<property name="styleSheet">
<string notr="true">
border-radius:4px;
font-family:DengXian;
color:#274e96;
font-size:18px;
width:100px;
height:40px;
border:1px solid #507efc;</string>
</property>
<property name="text">
<string>跳转至</string>
</property>
</widget>
</item>
<item>
<widget class="QLineEdit" name="lineEdit">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>0</width>
<height>28</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>60</width>
<height>40</height>
</size>
</property>
<property name="styleSheet">
<string notr="true">width:156px;
height:40px;
border:1px solid;
border-color:#507efc;
border-radius:4px;
font-family:Microsoft YaHei UI;
font-weight:55;
color:#000000;
font-size:18px;</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="label_2">
<property name="styleSheet">
<string notr="true">font-family:Microsoft YaHei UI;
font-weight:55;
color:#274e96;
font-size:18px;</string>
</property>
<property name="text">
<string></string>
</property>
</widget>
</item>
<item>
<spacer name="horizontalSpacer_59">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QLabel" name="label_3">
<property name="styleSheet">
<string notr="true">font-family:Microsoft YaHei UI;
font-weight:55;
color:#274e96;
font-size:18px;</string>
</property>
<property name="text">
<string></string>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="label_4">
<property name="minimumSize">
<size>
<width>40</width>
<height>0</height>
</size>
</property>
<property name="styleSheet">
<string notr="true">font-family:Microsoft YaHei UI;
font-weight:55;
color:#274e96;
font-size:18px;</string>
</property>
<property name="text">
<string>0</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="label_5">
<property name="styleSheet">
<string notr="true">font-family:Microsoft YaHei UI;
font-weight:55;
color:#274e96;
font-size:18px;</string>
</property>
<property name="text">
<string></string>
</property>
</widget>
</item>
<item>
<spacer name="horizontalSpacer_60">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
</layout>
</widget>
</item>
</layout>
</widget>
</item>
</layout>
</widget>
<resources/>
<connections/>
</ui>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/glm-001/permeatefromgithub.git
git@gitee.com:glm-001/permeatefromgithub.git
glm-001
permeatefromgithub
shenntoufromgithub
main

搜索帮助