| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- <UserControl
- x:Class="SHJX.Service.Main.Views.MainFormBottom"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:SHJX.Service.Main.Views"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:prism="http://prismlibrary.com/"
- xmlns:pu="clr-namespace:Panuon.UI.Silver;assembly=Panuon.UI.Silver"
- d:DesignHeight="60"
- d:DesignWidth="2000"
- prism:ViewModelLocator.AutoWireViewModel="True"
- Background="#929FDE"
- mc:Ignorable="d">
- <Grid>
- <StackPanel
- HorizontalAlignment="Left"
- VerticalAlignment="Center"
- Orientation="Horizontal">
- <Label
- Content="屏幕锁定:"
- FontSize="12"
- FontWeight="Black"
- Foreground="White" />
- <pu:Badge
- Height="20"
- Margin="-8,0,0,0"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- Background="{Binding LockDesktopDisplay}"
- IsWaving="{Binding LockDesktopState}" />
- <Label
- Content=" | "
- FontSize="12"
- FontWeight="Black"
- Foreground="White" />
- <Label
- Content="加热状态:"
- FontSize="12"
- FontWeight="Black"
- Foreground="White" />
- <pu:Badge
- Height="20"
- Margin="-8,0,0,0"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- Background="{Binding HeatingDisplay}"
- IsWaving="{Binding HeatingState}" />
- <Label
- Content=" | "
- FontSize="12"
- FontWeight="Black"
- Foreground="White" />
- <Label
- Content="端口连接:"
- FontSize="12"
- FontWeight="Black"
- Foreground="White" />
- <pu:Badge
- Height="20"
- Margin="-8,0,0,0"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- Background="{Binding PortClientDisplay}"
- IsWaving="{Binding PortClientState}" />
- <Label
- Content=" | "
- FontSize="12"
- FontWeight="Black"
- Foreground="White" />
- <Label
- Content="监测连接:"
- FontSize="12"
- FontWeight="Black"
- Foreground="White" />
- <pu:Badge
- Height="20"
- Margin="-8,0,0,0"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- Background="{Binding CameraClientDisplay}"
- IsWaving="{Binding CameraClientState}" />
- <pu:Badge
- Height="20"
- Margin="0,0,0,0"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- Background="{Binding CameraClientDisplay2}"
- IsWaving="{Binding CameraClientState2}" />
- <Label
- Content=" | "
- FontSize="12"
- FontWeight="Black"
- Foreground="White" />
- <Label
- Content="温度监控:"
- FontSize="12"
- FontWeight="Black"
- Foreground="White" />
- <Label
- Content="{Binding TemperatureValue}"
- FontSize="12"
- FontWeight="Black"
- Foreground="White" />
- <Label
- Content=" | "
- FontSize="12"
- FontWeight="Black"
- Foreground="White" />
- <Label
- Content="K值监控:"
- FontSize="12"
- FontWeight="Black"
- Foreground="White" />
- <Label
- Content="{Binding KValue}"
- FontSize="12"
- FontWeight="Black"
- Foreground="White" />
- <Label
- Content=" | "
- FontSize="12"
- FontWeight="Black"
- Foreground="White" />
- <Label
- Content="任务需求时间(h):"
- FontSize="12"
- FontWeight="Black"
- Foreground="White" />
- <Label
- Content="{Binding TaskNeedTime}"
- FontSize="12"
- FontWeight="Black"
- Foreground="White" />
- <!--<Label
- Content="温度监控:"
- FontSize="12"
- FontWeight="Black"
- Foreground="White" />
- <Label
- Content="{Binding TempValue}"
- FontSize="12"
- FontWeight="Black"
- Foreground="White" />
- <Label
- Content=" | "
- FontSize="12"
- FontWeight="Black"
- Foreground="White" />
- <Label
- Content="湿度监控:"
- FontSize="12"
- FontWeight="Black"
- Foreground="White" />
- <Label
- Content="{Binding HumidValue}"
- FontSize="12"
- FontWeight="Black"
- Foreground="White" />
- <Label
- Content=" | "
- FontSize="12"
- FontWeight="Black"
- Foreground="White" />
- <Label
- Content="大气压:"
- FontSize="12"
- FontWeight="Black"
- Foreground="White" />
- <Label
- Content="101.4 kpa"
- FontSize="12"
- FontWeight="Black"
- Foreground="White" />-->
- </StackPanel>
- </Grid>
- </UserControl>
|