1 Star 0 Fork 0

qinxude/rk3568ui

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
mainscreen.ui 54.25 KB
一键复制 编辑 原始数据 按行查看 历史
qinxude 提交于 2024-09-03 09:38 . 3568ui base
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>MainScreen</class>
<widget class="QWidget" name="MainScreen">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>1080</width>
<height>1920</height>
</rect>
</property>
<property name="windowTitle">
<string>mainScreen</string>
</property>
<property name="styleSheet">
<string notr="true"/>
</property>
<widget class="QWidget" name="widget" native="true">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>1080</width>
<height>1920</height>
</rect>
</property>
<property name="autoFillBackground">
<bool>false</bool>
</property>
<property name="styleSheet">
<string notr="true">#widget{background-image: url(:/image/mainScreen.png);}</string>
</property>
<widget class="QWidget" name="VMShowWidget" native="true">
<property name="geometry">
<rect>
<x>35</x>
<y>156</y>
<width>1011</width>
<height>521</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background-color: rgb(174, 236, 255);
border-radius:5.4px;
</string>
</property>
<widget class="QStackedWidget" name="VTDisplay">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>1011</width>
<height>521</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background-color: rgb(9, 22, 45);
border-radius: 5.4px;</string>
</property>
<property name="currentIndex">
<number>1</number>
</property>
<widget class="QWidget" name="page">
<property name="styleSheet">
<string notr="true">border-radius:5.4px;
</string>
</property>
</widget>
<widget class="QWidget" name="page_1">
<property name="styleSheet">
<string notr="true">background-color: rgb(9, 22, 45);
</string>
</property>
<widget class="QWidget" name="MainDisplay" native="true">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>734</width>
<height>521</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background-color: rgb(16, 24, 40);</string>
</property>
</widget>
<widget class="QWidget" name="SubDisplay1" native="true">
<property name="geometry">
<rect>
<x>741</x>
<y>0</y>
<width>270</width>
<height>169</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background-color: rgb(16, 24, 40);</string>
</property>
</widget>
<widget class="QWidget" name="SubDisplay2" native="true">
<property name="geometry">
<rect>
<x>741</x>
<y>176</y>
<width>270</width>
<height>169</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background-color: rgb(16, 24, 40);</string>
</property>
</widget>
<widget class="QWidget" name="addCamera" native="true">
<property name="geometry">
<rect>
<x>741</x>
<y>352</y>
<width>270</width>
<height>169</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background-color: rgb(16, 24, 40);
</string>
</property>
<widget class="QPushButton" name="pushButton_10">
<property name="geometry">
<rect>
<x>113</x>
<y>67</y>
<width>33</width>
<height>33</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background:transparent;
border-image: url(:/image/addSmall.png);
</string>
</property>
<property name="text">
<string/>
</property>
</widget>
</widget>
</widget>
<widget class="QWidget" name="page_2">
<widget class="QWidget" name="FullDisplay" native="true">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>1011</width>
<height>521</height>
</rect>
</property>
</widget>
</widget>
</widget>
</widget>
<widget class="QLabel" name="m_lblHeightAlarm">
<property name="geometry">
<rect>
<x>730</x>
<y>1665</y>
<width>61</width>
<height>41</height>
</rect>
</property>
<property name="font">
<font>
<family>等线</family>
<pointsize>13</pointsize>
<italic>false</italic>
<bold>false</bold>
</font>
</property>
<property name="styleSheet">
<string notr="true">color: rgb(203, 231, 255);
font: 13pt &quot;等线&quot;;
font-weight: 400;
</string>
</property>
<property name="text">
<string>100m</string>
</property>
</widget>
<widget class="QLabel" name="label_2">
<property name="geometry">
<rect>
<x>594</x>
<y>1611</y>
<width>101</width>
<height>41</height>
</rect>
</property>
<property name="font">
<font>
<family>等线</family>
<pointsize>15</pointsize>
<italic>false</italic>
<bold>true</bold>
</font>
</property>
<property name="styleSheet">
<string notr="true">color: rgb(203, 231, 255);
font: 15pt &quot;等线&quot;;
font-weight: bold;
</string>
</property>
<property name="text">
<string>高度(m)</string>
</property>
</widget>
<widget class="QLabel" name="HeightShow">
<property name="geometry">
<rect>
<x>551</x>
<y>1657</y>
<width>141</width>
<height>51</height>
</rect>
</property>
<property name="font">
<font>
<family>等线</family>
<pointsize>24</pointsize>
<italic>false</italic>
<bold>true</bold>
</font>
</property>
<property name="styleSheet">
<string notr="true">color: #FE6240;
font: 24pt &quot;等线&quot;;
font-weight: 700;</string>
</property>
<property name="text">
<string>1.23450</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
<widget class="QLabel" name="label_17">
<property name="geometry">
<rect>
<x>560</x>
<y>1620</y>
<width>27</width>
<height>27</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">image: url(:/image/Height.png);
</string>
</property>
<property name="text">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;right&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
</widget>
<widget class="QLabel" name="WindSpeedShow">
<property name="geometry">
<rect>
<x>810</x>
<y>1657</y>
<width>151</width>
<height>51</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">color: #02B695;
font: 24pt &quot;等线&quot;;
font-weight: 700;
</string>
</property>
<property name="text">
<string>1.2340</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
<widget class="QLabel" name="label_22">
<property name="geometry">
<rect>
<x>823</x>
<y>1605</y>
<width>41</width>
<height>41</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">image: url(:/image/WindSpeed.png);
font: 30px&quot;Ubuntu&quot;;
font:bold;
color: rgb(251, 160, 57);
image-position:left;
border:0px solid;</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QProgressBar" name="WindSpeedBar">
<property name="geometry">
<rect>
<x>807</x>
<y>1725</y>
<width>252</width>
<height>12</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>12</pointsize>
<italic>false</italic>
<bold>true</bold>
</font>
</property>
<property name="styleSheet">
<string notr="true">QProgressBar {
border-bottom-right-radius:5.4px;
border-bottom-left-radius:5.4px;
background-color: #76706F;
}
QProgressBar::chunk {
border-bottom-left-radius:5.4px;
background-color: #02B695;
}</string>
</property>
<property name="value">
<number>0</number>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
<property name="textVisible">
<bool>false</bool>
</property>
</widget>
<widget class="QProgressBar" name="MomentForceBar">
<property name="geometry">
<rect>
<x>283</x>
<y>1725</y>
<width>252</width>
<height>12</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>11</pointsize>
<italic>false</italic>
<bold>true</bold>
</font>
</property>
<property name="styleSheet">
<string notr="true">QProgressBar {
border-bottom-right-radius:5.4px;
border-bottom-left-radius:5.4px;
background-color: #76706F;
}
QProgressBar::chunk {
border-bottom-left-radius:5.4px;
background-color: #02B695;
}</string>
</property>
<property name="value">
<number>0</number>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
<property name="textVisible">
<bool>false</bool>
</property>
</widget>
<widget class="QLabel" name="MomentShow">
<property name="geometry">
<rect>
<x>281</x>
<y>1650</y>
<width>161</width>
<height>61</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">color: #02B695;
font: 24pt &quot;等线&quot;;
font-weight: 700;
</string>
</property>
<property name="text">
<string>1.23450</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
<widget class="QLabel" name="label_37">
<property name="geometry">
<rect>
<x>299</x>
<y>1616</y>
<width>27</width>
<height>27</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background-image: url(:/image/Torque.png);</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QProgressBar" name="ScopeBar">
<property name="geometry">
<rect>
<x>283</x>
<y>1876</y>
<width>252</width>
<height>12</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>18</pointsize>
<italic>false</italic>
<bold>true</bold>
</font>
</property>
<property name="styleSheet">
<string notr="true">QProgressBar {
border-bottom-right-radius:5.4px;
border-bottom-left-radius:5.4px;
background-color: #76706F;
}
QProgressBar::chunk {
border-bottom-left-radius:5.4px;
background-color: #02B695;
}</string>
</property>
<property name="value">
<number>0</number>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
<property name="textVisible">
<bool>false</bool>
</property>
</widget>
<widget class="QLabel" name="ScopeShow">
<property name="geometry">
<rect>
<x>290</x>
<y>1804</y>
<width>141</width>
<height>51</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">color: #02B695;
font: 24pt &quot;等线&quot;;
font-weight: 700;
</string>
</property>
<property name="text">
<string>1.23450</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
<widget class="QLabel" name="label_10">
<property name="geometry">
<rect>
<x>299</x>
<y>1765</y>
<width>27</width>
<height>27</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background-image: url(:/image/Amplitude.png);</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QLabel" name="label_30">
<property name="geometry">
<rect>
<x>565</x>
<y>1764</y>
<width>27</width>
<height>27</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background-image: url(:/image/DipAngle.png);</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QProgressBar" name="AngleBar">
<property name="geometry">
<rect>
<x>546</x>
<y>1876</y>
<width>252</width>
<height>12</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>12</pointsize>
<italic>false</italic>
<bold>true</bold>
</font>
</property>
<property name="styleSheet">
<string notr="true">QProgressBar {
border-bottom-right-radius:5.4px;
border-bottom-left-radius:5.4px;
background-color: #76706F;
}
QProgressBar::chunk {
border-bottom-left-radius:5.4px;
background-color: #02B695;
}</string>
</property>
<property name="value">
<number>0</number>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
<property name="textVisible">
<bool>false</bool>
</property>
</widget>
<widget class="QLabel" name="AngleShow">
<property name="geometry">
<rect>
<x>536</x>
<y>1800</y>
<width>181</width>
<height>61</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">color: #02B695;
font: 24pt &quot;等线&quot;;
font-weight: 700;
</string>
</property>
<property name="text">
<string>1.23450</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
<widget class="QProgressBar" name="RotationBar">
<property name="geometry">
<rect>
<x>807</x>
<y>1875</y>
<width>252</width>
<height>12</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>12</pointsize>
<italic>false</italic>
<bold>true</bold>
</font>
</property>
<property name="styleSheet">
<string notr="true">QProgressBar {
border-bottom-right-radius:5.4px;
border-bottom-left-radius:5.4px;
background-color: #76706F;
}
QProgressBar::chunk {
border-bottom-left-radius:5.4px;
background-color: #02B695;
}</string>
</property>
<property name="value">
<number>0</number>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
<property name="textVisible">
<bool>false</bool>
</property>
</widget>
<widget class="QLabel" name="label">
<property name="geometry">
<rect>
<x>822</x>
<y>1763</y>
<width>41</width>
<height>41</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">image: url(:/image/Rotation.png);
font: 30px &quot;Ubuntu&quot;;
font:bold;
color: rgb(251, 160, 57);
image-position:left;
border:0px solid;</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QLabel" name="label_27">
<property name="geometry">
<rect>
<x>300</x>
<y>1460</y>
<width>27</width>
<height>27</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background-image: url(:/image/LiftingCapacity.png);
</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QLabel" name="WeightShow">
<property name="geometry">
<rect>
<x>283</x>
<y>1490</y>
<width>161</width>
<height>81</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">
color: #02B695;
font: 24pt &quot;等线&quot;;
font-weight: 700;</string>
</property>
<property name="text">
<string>1.23450</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
<widget class="QLabel" name="label_7">
<property name="geometry">
<rect>
<x>703</x>
<y>1672</y>
<width>25</width>
<height>25</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background-image: url(:/image/alarm.png);</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QLabel" name="label_8">
<property name="geometry">
<rect>
<x>20</x>
<y>70</y>
<width>161</width>
<height>16</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">font: 12pt &quot;等线&quot;;
color: rgb(203, 231, 255);
</string>
</property>
<property name="text">
<string>ID:12345679</string>
</property>
</widget>
<widget class="QLabel" name="label_9">
<property name="geometry">
<rect>
<x>888</x>
<y>73</y>
<width>191</width>
<height>16</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">font: 11pt &quot;等线&quot;;
color: rgb(203, 231, 255);</string>
</property>
<property name="text">
<string>2024-01-01 06:31:32</string>
</property>
</widget>
<widget class="QLabel" name="label_11">
<property name="geometry">
<rect>
<x>860</x>
<y>32</y>
<width>38</width>
<height>27</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background-image: url(:/image/net.png);</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QLabel" name="label_12">
<property name="geometry">
<rect>
<x>936</x>
<y>35</y>
<width>38</width>
<height>22</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background-image: url(:/image/ups.png);</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QPushButton" name="m_pBtnSet">
<property name="geometry">
<rect>
<x>1015</x>
<y>30</y>
<width>38</width>
<height>32</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background:transparent;
background-image: url(:/image/set.png);</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QLabel" name="label_14">
<property name="geometry">
<rect>
<x>64</x>
<y>748</y>
<width>121</width>
<height>51</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">color: rgb(203, 231, 255);
font: 17pt &quot;等线&quot;;
font-weight: bold;
</string>
</property>
<property name="text">
<string>智能检测</string>
</property>
</widget>
<widget class="QLabel" name="label_15">
<property name="geometry">
<rect>
<x>70</x>
<y>859</y>
<width>121</width>
<height>51</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">color: rgb(203, 231, 255);
font: 17pt &quot;等线&quot;;
font-weight: bold;</string>
</property>
<property name="text">
<string>塔机001</string>
</property>
</widget>
<widget class="QLabel" name="label_16">
<property name="geometry">
<rect>
<x>96</x>
<y>1443</y>
<width>121</width>
<height>51</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">color: rgb(203, 231, 255);
font: 17pt &quot;等线&quot;;
font-weight: bold;</string>
</property>
<property name="text">
<string>今日概况</string>
</property>
</widget>
<widget class="QPushButton" name="pushButton_2">
<property name="geometry">
<rect>
<x>946</x>
<y>746</y>
<width>100</width>
<height>57</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background:transparent;
background-image: url(:/image/more_ai.png);
color: rgb(203, 231, 255);
font: 14pt &quot;等线&quot;;
font-weight: 500;
</string>
</property>
<property name="text">
<string>更多</string>
</property>
</widget>
<widget class="QPushButton" name="pushButton_3">
<property name="geometry">
<rect>
<x>200</x>
<y>747</y>
<width>56</width>
<height>57</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background:transparent;
background-image: url(:/image/BasicMonitoring.png);</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QPushButton" name="pushButton_4">
<property name="geometry">
<rect>
<x>268</x>
<y>747</y>
<width>56</width>
<height>57</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background:transparent;
background-image: url(:/image/FenceMonitoring.png);</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QPushButton" name="pushButton_5">
<property name="geometry">
<rect>
<x>336</x>
<y>747</y>
<width>56</width>
<height>57</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background:transparent;
background-image: url(:/image/PreTighteningNut.png);</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QPushButton" name="pushButton_6">
<property name="geometry">
<rect>
<x>404</x>
<y>747</y>
<width>56</width>
<height>57</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background:transparent;
border-image: url(:/image/WireRope.png);</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QPushButton" name="pushButton_13">
<property name="geometry">
<rect>
<x>472</x>
<y>747</y>
<width>56</width>
<height>57</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background:transparent;
background-image: url(:/image/SafeWearing.png);</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QPushButton" name="pushButton_14">
<property name="geometry">
<rect>
<x>540</x>
<y>747</y>
<width>56</width>
<height>57</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background:transparent;
background-image: url(:/image/IntelligentEelectricity.png);</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QPushButton" name="pushButton_15">
<property name="geometry">
<rect>
<x>608</x>
<y>747</y>
<width>56</width>
<height>57</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background:transparent;
background-image: url(:/image/FireDetection.png);</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QPushButton" name="pushButton_16">
<property name="geometry">
<rect>
<x>676</x>
<y>747</y>
<width>56</width>
<height>57</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background:transparent;
background-image: url(:/image/WeatherMonitoring.png);</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QPushButton" name="pushButton_17">
<property name="geometry">
<rect>
<x>744</x>
<y>747</y>
<width>56</width>
<height>57</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background:transparent;
background-image: url(:/image/HoistingDangerZone.png);</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QPushButton" name="pushButton_18">
<property name="geometry">
<rect>
<x>812</x>
<y>747</y>
<width>56</width>
<height>57</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background:transparent;
background-image: url(:/image/DriverBehavior.png);</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QPushButton" name="pushButton_19">
<property name="geometry">
<rect>
<x>880</x>
<y>747</y>
<width>56</width>
<height>57</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background:transparent;
background-image: url(:/image/AlcoholMonitoring.png);</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QLabel" name="label_53">
<property name="geometry">
<rect>
<x>884</x>
<y>1010</y>
<width>121</width>
<height>51</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">color: rgb(203, 231, 255);
font: 17pt &quot;等线&quot;;
font-weight: bold;</string>
</property>
<property name="text">
<string>报警情况</string>
</property>
</widget>
<widget class="QLabel" name="label_55">
<property name="geometry">
<rect>
<x>740</x>
<y>1442</y>
<width>151</width>
<height>51</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">color: rgb(203, 231, 255);
font: 17pt &quot;等线&quot;;
font-weight: bold;</string>
</property>
<property name="text">
<string>控制输出状态</string>
</property>
</widget>
<widget class="QLabel" name="label_56">
<property name="geometry">
<rect>
<x>332</x>
<y>1450</y>
<width>121</width>
<height>51</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">color: rgb(203, 231, 255);
font: 15pt &quot;等线&quot;;
font-weight: bold;</string>
</property>
<property name="text">
<string>起重量(t)</string>
</property>
</widget>
<widget class="QLabel" name="label_57">
<property name="geometry">
<rect>
<x>482</x>
<y>1515</y>
<width>61</width>
<height>41</height>
</rect>
</property>
<property name="font">
<font>
<family>等线</family>
<pointsize>13</pointsize>
<italic>false</italic>
<bold>false</bold>
</font>
</property>
<property name="styleSheet">
<string notr="true">
color: rgb(203, 231, 255);
</string>
</property>
<property name="text">
<string>100t</string>
</property>
</widget>
<widget class="QLabel" name="label_58">
<property name="geometry">
<rect>
<x>455</x>
<y>1522</y>
<width>25</width>
<height>25</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background-image: url(:/image/alarm.png);</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QLabel" name="label_59">
<property name="geometry">
<rect>
<x>50</x>
<y>1501</y>
<width>141</width>
<height>31</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">color: rgb(105, 172, 255);
font: 12pt &quot;等线&quot;;
font-weight: 500;</string>
</property>
<property name="text">
<string>累计工作时间</string>
</property>
</widget>
<widget class="QLabel" name="label_60">
<property name="geometry">
<rect>
<x>50</x>
<y>1538</y>
<width>141</width>
<height>31</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">color: rgb(105, 172, 255);
font: 12pt &quot;等线&quot;;
font-weight: 500;</string>
</property>
<property name="text">
<string>工作循环次数</string>
</property>
</widget>
<widget class="QLabel" name="label_34">
<property name="geometry">
<rect>
<x>190</x>
<y>1496</y>
<width>101</width>
<height>41</height>
</rect>
</property>
<property name="font">
<font>
<family>等线</family>
<pointsize>13</pointsize>
<italic>false</italic>
<bold>true</bold>
</font>
</property>
<property name="styleSheet">
<string notr="true">color: rgb(203, 231, 255);
font: 13pt &quot;等线&quot;;
font-weight: 700;
</string>
</property>
<property name="text">
<string>8小时</string>
</property>
</widget>
<widget class="QLabel" name="label_61">
<property name="geometry">
<rect>
<x>190</x>
<y>1532</y>
<width>71</width>
<height>41</height>
</rect>
</property>
<property name="font">
<font>
<family>等线</family>
<pointsize>13</pointsize>
<italic>false</italic>
<bold>true</bold>
</font>
</property>
<property name="styleSheet">
<string notr="true">color: rgb(203, 231, 255);
font: 13pt &quot;等线&quot;;
font-weight: 700;
</string>
</property>
<property name="text">
<string>56次</string>
</property>
</widget>
<widget class="QLabel" name="label_62">
<property name="geometry">
<rect>
<x>329</x>
<y>1604</y>
<width>151</width>
<height>51</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">color: rgb(203, 231, 255);
font: 15pt &quot;等线&quot;;
font-weight: bold;</string>
</property>
<property name="text">
<string>力矩(KN*M)</string>
</property>
</widget>
<widget class="QLabel" name="label_63">
<property name="geometry">
<rect>
<x>436</x>
<y>1671</y>
<width>25</width>
<height>25</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background-image: url(:/image/alarm.png);</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QLabel" name="m_lblMomentAlarm">
<property name="geometry">
<rect>
<x>463</x>
<y>1664</y>
<width>81</width>
<height>41</height>
</rect>
</property>
<property name="font">
<font>
<family>等线</family>
<pointsize>11</pointsize>
<italic>false</italic>
<bold>false</bold>
</font>
</property>
<property name="styleSheet">
<string notr="true">
color: rgb(203, 231, 255);
font: 11pt &quot;等线&quot;;
font-weight: 400;
</string>
</property>
<property name="text">
<string>100KN*M</string>
</property>
</widget>
<widget class="QLabel" name="label_65">
<property name="geometry">
<rect>
<x>332</x>
<y>1752</y>
<width>101</width>
<height>51</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">color: rgb(203, 231, 255);
font: 15pt &quot;等线&quot;;
font-weight: bold;</string>
</property>
<property name="text">
<string>幅度(m)</string>
</property>
</widget>
<widget class="QLabel" name="m_lblScopeAlarm">
<property name="geometry">
<rect>
<x>470</x>
<y>1813</y>
<width>61</width>
<height>41</height>
</rect>
</property>
<property name="font">
<font>
<family>等线</family>
<pointsize>13</pointsize>
<italic>false</italic>
<bold>false</bold>
</font>
</property>
<property name="styleSheet">
<string notr="true">color: rgb(203, 231, 255);
font: 13pt &quot;等线&quot;;
font-weight: 400;
</string>
</property>
<property name="text">
<string>100m</string>
</property>
</widget>
<widget class="QLabel" name="label_13">
<property name="geometry">
<rect>
<x>443</x>
<y>1820</y>
<width>25</width>
<height>25</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background-image: url(:/image/alarm.png);</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QLabel" name="label_66">
<property name="geometry">
<rect>
<x>599</x>
<y>1754</y>
<width>101</width>
<height>51</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">color: rgb(203, 231, 255);
font: 15pt &quot;等线&quot;;
font-weight: bold;</string>
</property>
<property name="text">
<string>倾角(度)</string>
</property>
</widget>
<widget class="QLabel" name="label_67">
<property name="geometry">
<rect>
<x>858</x>
<y>1756</y>
<width>101</width>
<height>51</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">color: rgb(203, 231, 255);
font: 15pt &quot;等线&quot;;
font-weight: bold;</string>
</property>
<property name="text">
<string>回转(度)</string>
</property>
</widget>
<widget class="QLabel" name="label_19">
<property name="geometry">
<rect>
<x>703</x>
<y>1818</y>
<width>25</width>
<height>25</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background-image: url(:/image/alarm.png);</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QLabel" name="m_lblAngleAlarm">
<property name="geometry">
<rect>
<x>730</x>
<y>1811</y>
<width>61</width>
<height>41</height>
</rect>
</property>
<property name="font">
<font>
<family>等线</family>
<pointsize>13</pointsize>
<italic>false</italic>
<bold>false</bold>
</font>
</property>
<property name="styleSheet">
<string notr="true">color: rgb(203, 231, 255);
font: 13pt &quot;等线&quot;;
font-weight: 400;
</string>
</property>
<property name="text">
<string>100度</string>
</property>
</widget>
<widget class="QLabel" name="label_68">
<property name="geometry">
<rect>
<x>857</x>
<y>1603</y>
<width>121</width>
<height>51</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">color: rgb(203, 231, 255);
font: 15pt &quot;等线&quot;;
font-weight: bold;</string>
</property>
<property name="text">
<string>风速(m/s)</string>
</property>
</widget>
<widget class="QLabel" name="label_20">
<property name="geometry">
<rect>
<x>952</x>
<y>1671</y>
<width>25</width>
<height>25</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background-image: url(:/image/alarm.png);</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QLabel" name="m_lblWindAlarm">
<property name="geometry">
<rect>
<x>979</x>
<y>1664</y>
<width>81</width>
<height>41</height>
</rect>
</property>
<property name="font">
<font>
<family>等线</family>
<pointsize>13</pointsize>
<italic>false</italic>
<bold>false</bold>
</font>
</property>
<property name="styleSheet">
<string notr="true">color: rgb(203, 231, 255);
font: 13pt &quot;等线&quot;;
font-weight: 400;
</string>
</property>
<property name="text">
<string>100m/s</string>
</property>
</widget>
<widget class="QLabel" name="label_24">
<property name="geometry">
<rect>
<x>987</x>
<y>1810</y>
<width>61</width>
<height>41</height>
</rect>
</property>
<property name="font">
<font>
<family>等线</family>
<pointsize>13</pointsize>
<italic>false</italic>
<bold>false</bold>
</font>
</property>
<property name="styleSheet">
<string notr="true">color: rgb(203, 231, 255);
font: 13pt &quot;等线&quot;;
font-weight: 400;
</string>
</property>
<property name="text">
<string>100度</string>
</property>
</widget>
<widget class="QLabel" name="label_25">
<property name="geometry">
<rect>
<x>962</x>
<y>1817</y>
<width>25</width>
<height>25</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background-image: url(:/image/alarm.png);</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QProgressBar" name="HeightBar">
<property name="geometry">
<rect>
<x>546</x>
<y>1725</y>
<width>251</width>
<height>12</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>11</pointsize>
<italic>false</italic>
<bold>true</bold>
</font>
</property>
<property name="styleSheet">
<string notr="true">QProgressBar {
border-bottom-right-radius:5.4px;
border-bottom-left-radius:5.4px;
background-color: #76706F;
}
QProgressBar::chunk {
border-bottom-left-radius:5.4px;
background-color: #02B695;
}</string>
</property>
<property name="value">
<number>0</number>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
<property name="textVisible">
<bool>false</bool>
</property>
</widget>
<widget class="QProgressBar" name="WeightBar">
<property name="geometry">
<rect>
<x>284</x>
<y>1574</y>
<width>251</width>
<height>12</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>11</pointsize>
<italic>false</italic>
<bold>true</bold>
</font>
</property>
<property name="styleSheet">
<string notr="true">QProgressBar {
border-bottom-right-radius:5.4px;
border-bottom-left-radius:5.4px;
background-color: #76706F;
}
QProgressBar::chunk {
border-bottom-left-radius:5.4px;
background-color: #02B695;
}</string>
</property>
<property name="value">
<number>0</number>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
<property name="textVisible">
<bool>false</bool>
</property>
</widget>
<widget class="QPushButton" name="pushButton_8">
<property name="geometry">
<rect>
<x>807</x>
<y>862</y>
<width>251</width>
<height>140</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">QPushButton {
background-image: url(:/image/keyCall.png);
border-radius: 5.4px 5.4px;
padding-left: 49px;
color: rgb(203, 231, 255);
font: 17pt &quot;等线&quot;;
font-weight: bold;
}</string>
</property>
<property name="text">
<string>一键呼叫</string>
</property>
</widget>
<widget class="QPushButton" name="pushButton_9">
<property name="geometry">
<rect>
<x>20</x>
<y>20</y>
<width>164</width>
<height>39</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background:transparent;
background-image: url(:/image/logo.png);</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QLabel" name="label_3">
<property name="geometry">
<rect>
<x>563</x>
<y>1490</y>
<width>54</width>
<height>54</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background-image: url(:/image/left.png);</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QLabel" name="label_4">
<property name="geometry">
<rect>
<x>569</x>
<y>1547</y>
<width>72</width>
<height>31</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">color: rgb(203, 231, 255);
font: 13pt &quot;等线&quot;;
font-weight: 500;
</string>
</property>
<property name="text">
<string>左转</string>
</property>
</widget>
<widget class="QLabel" name="label_5">
<property name="geometry">
<rect>
<x>648</x>
<y>1490</y>
<width>54</width>
<height>54</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background-image: url(:/image/right.png);</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QLabel" name="label_26">
<property name="geometry">
<rect>
<x>654</x>
<y>1547</y>
<width>72</width>
<height>31</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">color: rgb(203, 231, 255);
font: 13pt &quot;等线&quot;;
font-weight: 500;
</string>
</property>
<property name="text">
<string>右转</string>
</property>
</widget>
<widget class="QLabel" name="label_28">
<property name="geometry">
<rect>
<x>733</x>
<y>1490</y>
<width>54</width>
<height>54</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background-image: url(:/image/up.png);</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QLabel" name="label_29">
<property name="geometry">
<rect>
<x>739</x>
<y>1547</y>
<width>72</width>
<height>31</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">color: rgb(203, 231, 255);
font: 13pt &quot;等线&quot;;
font-weight: 500;</string>
</property>
<property name="text">
<string>向上</string>
</property>
</widget>
<widget class="QLabel" name="label_31">
<property name="geometry">
<rect>
<x>818</x>
<y>1490</y>
<width>54</width>
<height>54</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background-image: url(:/image/down.png);</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QLabel" name="label_32">
<property name="geometry">
<rect>
<x>824</x>
<y>1547</y>
<width>72</width>
<height>31</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">color: rgb(203, 231, 255);
font: 13pt &quot;等线&quot;;
font-weight: 500;
</string>
</property>
<property name="text">
<string>向下</string>
</property>
</widget>
<widget class="QLabel" name="label_33">
<property name="geometry">
<rect>
<x>903</x>
<y>1490</y>
<width>54</width>
<height>54</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background-image: url(:/image/up.png);</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QLabel" name="label_35">
<property name="geometry">
<rect>
<x>909</x>
<y>1548</y>
<width>72</width>
<height>31</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">color: rgb(203, 231, 255);
font: 13pt &quot;等线&quot;;
font-weight: 500;</string>
</property>
<property name="text">
<string>向前</string>
</property>
</widget>
<widget class="QLabel" name="label_36">
<property name="geometry">
<rect>
<x>988</x>
<y>1490</y>
<width>54</width>
<height>54</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background-image: url(:/image/down.png);</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QLabel" name="label_38">
<property name="geometry">
<rect>
<x>994</x>
<y>1547</y>
<width>72</width>
<height>31</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">color: rgb(203, 231, 255);
font: 13pt &quot;等线&quot;;
font-weight: 500;
</string>
</property>
<property name="text">
<string>向后</string>
</property>
</widget>
<widget class="QPushButton" name="pushButton_7">
<property name="geometry">
<rect>
<x>90</x>
<y>1815</y>
<width>122</width>
<height>57</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background:transparent;
background-image: url(:/image/goOffWork.png);
color: rgb(203, 231, 255);
font: 13pt &quot;等线&quot;;
font-weight: 500;
</string>
</property>
<property name="text">
<string>点我下班</string>
</property>
</widget>
<widget class="QLabel" name="RotationShow">
<property name="geometry">
<rect>
<x>820</x>
<y>1800</y>
<width>131</width>
<height>61</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">color: #02B695;
font: 24pt &quot;等线&quot;;
font-weight: 700;
</string>
</property>
<property name="text">
<string>1.2340</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
<widget class="QLabel" name="label_40">
<property name="geometry">
<rect>
<x>148</x>
<y>1600</y>
<width>121</width>
<height>51</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">color: rgb(203, 231, 255);
font: 17pt &quot;等线&quot;;
font-weight: bold;</string>
</property>
<property name="text">
<string>易烊千玺</string>
</property>
</widget>
<widget class="QLabel" name="label_69">
<property name="geometry">
<rect>
<x>150</x>
<y>1644</y>
<width>101</width>
<height>41</height>
</rect>
</property>
<property name="font">
<font>
<family>等线</family>
<pointsize>13</pointsize>
<italic>false</italic>
<bold>false</bold>
</font>
</property>
<property name="styleSheet">
<string notr="true">color: #02B695;
font: 13pt &quot;等线&quot;;
</string>
</property>
<property name="text">
<string>已认证</string>
</property>
</widget>
<widget class="QLabel" name="label_70">
<property name="geometry">
<rect>
<x>150</x>
<y>1684</y>
<width>111</width>
<height>41</height>
</rect>
</property>
<property name="font">
<font>
<family>等线</family>
<pointsize>11</pointsize>
<italic>false</italic>
<bold>false</bold>
</font>
</property>
<property name="styleSheet">
<string notr="true">color: #FE6240;
font: 11pt &quot;等线&quot;;
</string>
</property>
<property name="text">
<string>连续工作警告</string>
</property>
</widget>
<widget class="QLabel" name="label_71">
<property name="geometry">
<rect>
<x>32</x>
<y>1730</y>
<width>71</width>
<height>41</height>
</rect>
</property>
<property name="font">
<font>
<family>等线</family>
<pointsize>13</pointsize>
<italic>false</italic>
<bold>false</bold>
</font>
</property>
<property name="styleSheet">
<string notr="true">
color: rgb(203, 231, 255);
</string>
</property>
<property name="text">
<string>已工作</string>
</property>
</widget>
<widget class="QLabel" name="label_72">
<property name="geometry">
<rect>
<x>180</x>
<y>1730</y>
<width>51</width>
<height>41</height>
</rect>
</property>
<property name="font">
<font>
<family>等线</family>
<pointsize>13</pointsize>
<italic>false</italic>
<bold>false</bold>
</font>
</property>
<property name="styleSheet">
<string notr="true">
color: rgb(203, 231, 255);
</string>
</property>
<property name="text">
<string>小时</string>
</property>
</widget>
<widget class="QLabel" name="label_41">
<property name="geometry">
<rect>
<x>30</x>
<y>1770</y>
<width>23</width>
<height>23</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background-image: url(:/image/work.png);</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QLabel" name="label_42">
<property name="geometry">
<rect>
<x>60</x>
<y>1773</y>
<width>191</width>
<height>16</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">font: 11pt &quot;等线&quot;;
color: rgb(203, 231, 255);</string>
</property>
<property name="text">
<string>2024-01-01 06:31:32</string>
</property>
</widget>
<widget class="QLabel" name="label_43">
<property name="geometry">
<rect>
<x>32</x>
<y>1609</y>
<width>108</width>
<height>108</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">
background-image: url(:/image/pers.png);
border-image: url(:/image/PersonnelCertified.png);
border-radius: 6px;
</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QLabel" name="label_44">
<property name="geometry">
<rect>
<x>101</x>
<y>1730</y>
<width>32</width>
<height>32</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background-image: url(:/image/HourBackground.png);
color: rgb(203, 231, 255);
font: 17pt &quot;等线&quot;;
align: center;</string>
</property>
<property name="text">
<string>1</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
<widget class="QLabel" name="label_45">
<property name="geometry">
<rect>
<x>140</x>
<y>1730</y>
<width>32</width>
<height>32</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background-image: url(:/image/HourBackground.png);
color: rgb(203, 231, 255);
font: 17pt &quot;等线&quot;;
</string>
</property>
<property name="text">
<string>6</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
<widget class="QLabel" name="label_39">
<property name="geometry">
<rect>
<x>902</x>
<y>1070</y>
<width>56</width>
<height>57</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">border-image: url(:/image/AlarmSituation.png);</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QStackedWidget" name="stackedWidget">
<property name="geometry">
<rect>
<x>818</x>
<y>1140</y>
<width>230</width>
<height>240</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background:transparent;
outline: 0px;</string>
</property>
<property name="currentIndex">
<number>1</number>
</property>
<widget class="QWidget" name="stackedWidgetPage1"/>
<widget class="QWidget" name="stackedWidgetPage2"/>
</widget>
<widget class="QLabel" name="label_54">
<property name="geometry">
<rect>
<x>890</x>
<y>1390</y>
<width>40</width>
<height>8</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background-color: #69ACFF;
border-radius: 4px;</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QLabel" name="label_75">
<property name="geometry">
<rect>
<x>939</x>
<y>1390</y>
<width>15</width>
<height>8</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background-color: #3B6BA6;
border-radius: 4px;</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QLabel" name="label_77">
<property name="geometry">
<rect>
<x>960</x>
<y>1390</y>
<width>15</width>
<height>8</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background-color: #3B6BA6;
border-radius: 4px;</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QFrame" name="TowerAnimationShow">
<property name="geometry">
<rect>
<x>-96</x>
<y>920</y>
<width>861</width>
<height>461</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">border-radius: 5.4px;
background-image: url(:/image/tower.png);
</string>
</property>
<property name="frameShape">
<enum>QFrame::StyledPanel</enum>
</property>
<property name="frameShadow">
<enum>QFrame::Raised</enum>
</property>
<widget class="QLabel" name="m_lblTowerHeight">
<property name="geometry">
<rect>
<x>329</x>
<y>48</y>
<width>151</width>
<height>41</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">color: #0089FF;
font: 14pt &quot;等线&quot;;
font-weight: 500;</string>
</property>
<property name="text">
<string>塔高(m):20</string>
</property>
</widget>
<widget class="QLabel" name="m_lblArmLen">
<property name="geometry">
<rect>
<x>600</x>
<y>109</y>
<width>151</width>
<height>41</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">color: #0089FF;
font: 14pt &quot;等线&quot;;
font-weight: 500;</string>
</property>
<property name="text">
<string>臂长(m):20</string>
</property>
</widget>
</widget>
<widget class="QWidget" name="OverLook" native="true">
<property name="geometry">
<rect>
<x>450</x>
<y>1090</y>
<width>341</width>
<height>331</height>
</rect>
</property>
</widget>
</widget>
</widget>
<resources/>
<connections/>
</ui>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/qinxude/rk3568ui.git
[email protected]:qinxude/rk3568ui.git
qinxude
rk3568ui
rk3568ui
master

搜索帮助