|
|
<UserControl x:Class="SlnMesnac.WPF.Page.DevMonitorPage"
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
xmlns:local="clr-namespace:SlnMesnac.WPF.Page"
|
|
|
mc:Ignorable="d"
|
|
|
d:DesignHeight="1080" d:DesignWidth="1920" Background="Transparent">
|
|
|
<Grid >
|
|
|
<Grid.RowDefinitions>
|
|
|
<RowDefinition Height="*"/>
|
|
|
<RowDefinition Height="13*"/>
|
|
|
</Grid.RowDefinitions>
|
|
|
<Border Grid.Row="0" BorderBrush="White" BorderThickness="0.4" CornerRadius="5" Background="Transparent" Margin="1,1,5,5">
|
|
|
<Grid >
|
|
|
<StackPanel HorizontalAlignment="Left" VerticalAlignment="Center" Orientation="Horizontal" >
|
|
|
<Ellipse x:Name="StatusLight" Width="50" Height="50" Fill="Green"/>
|
|
|
<Label Content="系统运行状态:" Foreground="White" FontSize="40" Margin="0 0 10 0"/>
|
|
|
<TextBox Text="正在进料" Width="200" Foreground="White" FontSize="40"/>
|
|
|
<Button x:Name="StartButton" Content="一键启动" FontSize="30" Background="LimeGreen" Width="180" Height="60" Margin="100 0 20 0" Click="StartButton_Click"/>
|
|
|
<Button x:Name="StopButton" Content="一键停止" FontSize="30" Background="OrangeRed" Width="180" Height="60" Margin="0,0,20,0" Click="StopButton_Click"/>
|
|
|
<Button x:Name="StopUrgentButton" Content="急停" FontSize="30" Background="Yellow" Width="150" Height="60" Margin="0,0,0,0" Click="StopUrgentButton_Click"/>
|
|
|
</StackPanel>
|
|
|
</Grid>
|
|
|
</Border>
|
|
|
|
|
|
<Grid Grid.Row="1">
|
|
|
<Grid.RowDefinitions>
|
|
|
<RowDefinition Height="*"/>
|
|
|
<RowDefinition Height="*"/>
|
|
|
</Grid.RowDefinitions>
|
|
|
<Grid.ColumnDefinitions>
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
</Grid.ColumnDefinitions>
|
|
|
<Border Grid.Row="0" Grid.Column="0" BorderBrush="LimeGreen" BorderThickness="1" CornerRadius="5" Background="Transparent" Margin="1,1,5,5">
|
|
|
<Grid>
|
|
|
<Grid.RowDefinitions>
|
|
|
<RowDefinition Height="*"/>
|
|
|
<RowDefinition Height="10*"/>
|
|
|
<RowDefinition Height="*"/>
|
|
|
</Grid.RowDefinitions>
|
|
|
<TextBlock Text="拆包机设备监控" FontSize="22" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center"/>
|
|
|
<DataGrid ItemsSource="{Binding UnPackDataGrid}" Background="Transparent"
|
|
|
FontSize="15" ColumnHeaderHeight="35"
|
|
|
RowHeight="31" AutoGenerateColumns="False" RowHeaderWidth="0"
|
|
|
GridLinesVisibility="None" ScrollViewer.HorizontalScrollBarVisibility="Hidden"
|
|
|
ScrollViewer.VerticalScrollBarVisibility="Hidden" BorderThickness="0" CanUserAddRows="False" HorizontalAlignment="Left"
|
|
|
Foreground="#FFFFFF" Margin="150,41,0,0" Grid.RowSpan="2" >
|
|
|
<!--resourceStyle 399行修改选中字体颜色-->
|
|
|
<DataGrid.Columns>
|
|
|
<DataGridTextColumn Binding="{Binding Name}" Header="监听点位" Width="3*" IsReadOnly="True"/>
|
|
|
<DataGridTextColumn Binding="{Binding Value}" Header="监听值" Width="2*" IsReadOnly="True"/>
|
|
|
</DataGrid.Columns>
|
|
|
</DataGrid>
|
|
|
<StackPanel Grid.Row="2" HorizontalAlignment="Center" VerticalAlignment="Top" Orientation="Horizontal" >
|
|
|
<Button x:Name="StartUnPackButton" Content="拆包机启动" FontSize="25" Background="LimeGreen" Width="150" Height="40" Margin="0 0 20 0" Click="StartUnPackButton_Click" />
|
|
|
<Button x:Name="StopUnPackButton" Content="拆包机停止" FontSize="25" Background="OrangeRed" Width="150" Height="40" Margin="0,0,0,0" Click="StopUnPackButton_Click"/>
|
|
|
</StackPanel>
|
|
|
</Grid>
|
|
|
|
|
|
</Border>
|
|
|
<Border Grid.Row="0" Grid.Column="1" BorderBrush="LimeGreen" BorderThickness="1" CornerRadius="5" Background="Transparent" Margin="1,1,5,5">
|
|
|
<Grid>
|
|
|
<Grid.RowDefinitions>
|
|
|
<RowDefinition Height="*"/>
|
|
|
<RowDefinition Height="10*"/>
|
|
|
<RowDefinition Height="*"/>
|
|
|
</Grid.RowDefinitions>
|
|
|
<TextBlock Text="烘干机设备监控" FontSize="22" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center"/>
|
|
|
<DataGrid Grid.Row="1" ItemsSource="{Binding HotDataGrid}" Background="Transparent"
|
|
|
FontSize="15" ColumnHeaderHeight="35"
|
|
|
RowHeight="31" AutoGenerateColumns="False" RowHeaderWidth="0"
|
|
|
GridLinesVisibility="None" ScrollViewer.HorizontalScrollBarVisibility="Hidden"
|
|
|
ScrollViewer.VerticalScrollBarVisibility="Hidden" BorderThickness="0" CanUserAddRows="False" HorizontalAlignment="Center"
|
|
|
Foreground="#FFFFFF" >
|
|
|
<!--resourceStyle 399行修改选中字体颜色-->
|
|
|
<DataGrid.Columns>
|
|
|
<DataGridTextColumn Binding="{Binding Name}" Header="监听点位" Width="3*" IsReadOnly="True"/>
|
|
|
<DataGridTextColumn Binding="{Binding Value}" Header="监听值" Width="2*" IsReadOnly="True"/>
|
|
|
</DataGrid.Columns>
|
|
|
</DataGrid>
|
|
|
|
|
|
<StackPanel Grid.Row="2" HorizontalAlignment="Center" VerticalAlignment="Top" Orientation="Horizontal" >
|
|
|
<Button x:Name="StartDryerSpiralButton" Content="螺旋启动" FontSize="25" Background="LimeGreen" Width="120" Height="40" Margin="0 0 20 0" Click="StartDryerSpiralButton_Click"/>
|
|
|
<Button x:Name="StartDryerFanButton" Content="风机启动" FontSize="25" Background="LimeGreen" Width="120" Height="40" Margin="0 0 20 0" Click="StartDryerFanButton_Click"/>
|
|
|
<Button x:Name="StartDryerHotButton" Content="燃烧启动" FontSize="25" Background="LimeGreen" Width="120" Height="40" Margin="0 0 20 0" Click="StartDryerHotButton_Click"/>
|
|
|
<Button x:Name="StopDryerSpiralButton" Content="螺旋停止" FontSize="25" Background="OrangeRed" Width="120" Height="40" Margin="0,0,20,0" Click="StopDryerSpiralButton_Click"/>
|
|
|
<Button x:Name="StopDryerHotButton" Content="燃烧停止" FontSize="25" Background="OrangeRed" Width="120" Height="40" Margin="0,0,20,0" Click="StopDryerHotButton_Click"/>
|
|
|
<Button x:Name="StopDryerFanButton" Content="风机停止" FontSize="25" Background="OrangeRed" Width="120" Height="40" Margin="0,0,0,0" Click="StopDryerFanButton_Click"/>
|
|
|
</StackPanel>
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
</Border>
|
|
|
<Border Grid.Row="1" Grid.Column="0" BorderBrush="LimeGreen" BorderThickness="1" CornerRadius="5" Background="Transparent" Margin="1,1,5,5">
|
|
|
<Grid>
|
|
|
<Grid.RowDefinitions>
|
|
|
<RowDefinition Height="*"/>
|
|
|
<RowDefinition Height="10*"/>
|
|
|
<RowDefinition Height="*"/>
|
|
|
</Grid.RowDefinitions>
|
|
|
<TextBlock Text="磁选机设备监控" FontSize="22" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center"/>
|
|
|
|
|
|
<Grid Grid.Row="1">
|
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
<RowDefinition Height="*"/>
|
|
|
<RowDefinition Height="*"/>
|
|
|
<RowDefinition Height="*"/>
|
|
|
<RowDefinition Height="*"/>
|
|
|
<RowDefinition Height="*"/>
|
|
|
</Grid.RowDefinitions>
|
|
|
<Grid.ColumnDefinitions>
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
</Grid.ColumnDefinitions>
|
|
|
<StackPanel Grid.Row="0" Grid.Column="0" Orientation="Horizontal" HorizontalAlignment="Left" Margin="50 0 0 0">
|
|
|
<Ellipse x:Name="MagNetStatus1" VerticalAlignment="Center" Width="30" Height="30" Fill="Red"/>
|
|
|
<TextBlock Text="磁选机震动启动" FontSize="20" VerticalAlignment="Center" Margin="0,0,20,0" Foreground="White"/>
|
|
|
</StackPanel>
|
|
|
<StackPanel Grid.Row="0" Grid.Column="1" Orientation="Horizontal" HorizontalAlignment="Left" Margin="50 0 0 0">
|
|
|
<Ellipse x:Name="MagNetStatus2" VerticalAlignment="Center" Width="30" Height="30" Fill="Red"/>
|
|
|
<TextBlock Text="磁选机磁选启动" FontSize="20" VerticalAlignment="Center" Margin="0,0,20,0" Foreground="White"/>
|
|
|
</StackPanel>
|
|
|
<StackPanel Grid.Row="1" Grid.Column="0" Orientation="Horizontal" HorizontalAlignment="Left" Margin="50 0 0 0">
|
|
|
<Ellipse x:Name="MagNetStatus3" VerticalAlignment="Center" Width="30" Height="30" Fill="Red"/>
|
|
|
<TextBlock Text="磁选机MES允许远程" FontSize="20" VerticalAlignment="Center" Margin="0,0,20,0" Foreground="White"/>
|
|
|
</StackPanel>
|
|
|
<StackPanel Grid.Row="1" Grid.Column="1" Orientation="Horizontal" HorizontalAlignment="Left" Margin="50 0 0 0">
|
|
|
<Ellipse x:Name="MagNetStatus4" VerticalAlignment="Center" Width="30" Height="30" Fill="Green"/>
|
|
|
<TextBlock Text="磁选机设备报警" FontSize="20" VerticalAlignment="Center" Margin="0,0,20,0" Foreground="White"/>
|
|
|
</StackPanel>
|
|
|
|
|
|
</Grid>
|
|
|
<!--<DataGrid ItemsSource="{Binding MagNetDataGrid}" Background="Transparent"
|
|
|
FontSize="15" ColumnHeaderHeight="35"
|
|
|
RowHeight="31" AutoGenerateColumns="False" RowHeaderWidth="0"
|
|
|
GridLinesVisibility="None" ScrollViewer.HorizontalScrollBarVisibility="Hidden"
|
|
|
ScrollViewer.VerticalScrollBarVisibility="Hidden" BorderThickness="0" CanUserAddRows="False" HorizontalAlignment="Left"
|
|
|
Foreground="#FFFFFF" Margin="150,41,0,0" Grid.RowSpan="2" >
|
|
|
--><!--resourceStyle 399行修改选中字体颜色--><!--
|
|
|
<DataGrid.Columns>
|
|
|
<DataGridTextColumn Binding="{Binding Name}" Header="监听点位" Width="3*" IsReadOnly="True"/>
|
|
|
<DataGridTextColumn Binding="{Binding Value}" Header="监听值" Width="2*" IsReadOnly="True"/>
|
|
|
</DataGrid.Columns>
|
|
|
</DataGrid>-->
|
|
|
|
|
|
<StackPanel Grid.Row="2" HorizontalAlignment="Center" VerticalAlignment="Top" Orientation="Horizontal" >
|
|
|
<Button x:Name="StartMagNetButton" Content="磁选启动" FontSize="25" Background="LimeGreen" Width="150" Height="40" Margin="0 0 20 0" Click="StartMagNetButton_Click"/>
|
|
|
<Button x:Name="StopMagNetButton" Content="磁选停止" FontSize="25" Background="OrangeRed" Width="150" Height="40" Margin="0,0,0,0" Click="StopMagNetButton_Click"/>
|
|
|
</StackPanel>
|
|
|
|
|
|
</Grid>
|
|
|
</Border>
|
|
|
<Border Grid.Row="1" Grid.Column="1" BorderBrush="LimeGreen" BorderThickness="1" CornerRadius="5" Background="Transparent" Margin="1,1,5,5">
|
|
|
<Grid>
|
|
|
<Grid.RowDefinitions>
|
|
|
<RowDefinition Height="*"/>
|
|
|
<RowDefinition Height="10*"/>
|
|
|
<RowDefinition Height="*"/>
|
|
|
</Grid.RowDefinitions>
|
|
|
<TextBlock Text="螺旋机设备监控" FontSize="22" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center"/>
|
|
|
<Grid Grid.Row="1">
|
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
<RowDefinition Height="*"/>
|
|
|
<RowDefinition Height="*"/>
|
|
|
<RowDefinition Height="*"/>
|
|
|
<RowDefinition Height="*"/>
|
|
|
<RowDefinition Height="*"/>
|
|
|
</Grid.RowDefinitions>
|
|
|
<Grid.ColumnDefinitions>
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
</Grid.ColumnDefinitions>
|
|
|
<StackPanel Grid.Row="0" Grid.Column="0" Orientation="Horizontal" HorizontalAlignment="Left" Margin="50 0 0 0">
|
|
|
<Ellipse x:Name="SpiralSignal0" VerticalAlignment="Center" Width="30" Height="30" Fill="Red"/>
|
|
|
<TextBlock Text="螺旋1允许远程" FontSize="20" VerticalAlignment="Center" Margin="0,0,20,0" Foreground="White"/>
|
|
|
</StackPanel>
|
|
|
<StackPanel Grid.Row="0" Grid.Column="1" Orientation="Horizontal" HorizontalAlignment="Left" Margin="50 0 0 0">
|
|
|
<Ellipse x:Name="SpiralSignal1" VerticalAlignment="Center" Width="30" Height="30" Fill="Red"/>
|
|
|
<TextBlock Text="螺旋2允许远程" FontSize="20" VerticalAlignment="Center" Margin="0,0,20,0" Foreground="White"/>
|
|
|
</StackPanel>
|
|
|
<StackPanel Grid.Row="1" Grid.Column="0" Orientation="Horizontal" HorizontalAlignment="Left" Margin="50 0 0 0">
|
|
|
<Ellipse x:Name="SpiralSignal2" VerticalAlignment="Center" Width="30" Height="30" Fill="Red"/>
|
|
|
<TextBlock Text="螺旋1启动状态" FontSize="20" VerticalAlignment="Center" Margin="0,0,20,0" Foreground="White"/>
|
|
|
</StackPanel>
|
|
|
<StackPanel Grid.Row="1" Grid.Column="1" Orientation="Horizontal" HorizontalAlignment="Left" Margin="50 0 0 0">
|
|
|
<Ellipse x:Name="SpiralSignal3" VerticalAlignment="Center" Width="30" Height="30" Fill="Red"/>
|
|
|
<TextBlock Text="螺旋2启动状态" FontSize="20" VerticalAlignment="Center" Margin="0,0,20,0" Foreground="White"/>
|
|
|
</StackPanel>
|
|
|
<StackPanel Grid.Row="2" Grid.Column="0" Orientation="Horizontal" HorizontalAlignment="Left" Margin="50 0 0 0">
|
|
|
<Ellipse x:Name="SpiralSignal6" VerticalAlignment="Center" Width="30" Height="30" Fill="Red"/>
|
|
|
<TextBlock Text="螺旋1速度反馈:" FontSize="20" VerticalAlignment="Center" Margin="0,0,20,0" Foreground="White"/>
|
|
|
<TextBlock x:Name="SpiralSignal6_Value" Text="0" FontSize="20" VerticalAlignment="Center" Margin="0,0,20,0" Foreground="White"/>
|
|
|
</StackPanel>
|
|
|
<StackPanel Grid.Row="2" Grid.Column="1" Orientation="Horizontal" HorizontalAlignment="Left" Margin="50 0 0 0">
|
|
|
<Ellipse x:Name="SpiralSignal7" VerticalAlignment="Center" Width="30" Height="30" Fill="Red"/>
|
|
|
<TextBlock Text="螺旋2速度反馈:" FontSize="20" VerticalAlignment="Center" Margin="0,0,20,0" Foreground="White"/>
|
|
|
<TextBlock x:Name="SpiralSignal7_Value" Text="0" FontSize="20" VerticalAlignment="Center" Margin="0,0,20,0" Foreground="White"/>
|
|
|
</StackPanel>
|
|
|
<StackPanel Grid.Row="3" Grid.Column="0" Orientation="Horizontal" HorizontalAlignment="Left" Margin="50 0 0 0">
|
|
|
<Ellipse x:Name="SpiralSignal4" VerticalAlignment="Center" Width="30" Height="30" Fill="Green"/>
|
|
|
<TextBlock Text="螺旋1变频器报警" FontSize="20" VerticalAlignment="Center" Margin="0,0,20,0" Foreground="White"/>
|
|
|
</StackPanel>
|
|
|
<StackPanel Grid.Row="3" Grid.Column="1" Orientation="Horizontal" HorizontalAlignment="Left" Margin="50 0 0 0">
|
|
|
<Ellipse x:Name="SpiralSignal5" VerticalAlignment="Center" Width="30" Height="30" Fill="Green"/>
|
|
|
<TextBlock Text="螺旋2变频器报警" FontSize="20" VerticalAlignment="Center" Margin="0,0,20,0" Foreground="White"/>
|
|
|
</StackPanel>
|
|
|
</Grid>
|
|
|
<!--<DataGrid Grid.Row="1" ItemsSource="{Binding SpiralDataGrid}" Background="Transparent"
|
|
|
FontSize="15" ColumnHeaderHeight="35"
|
|
|
RowHeight="31" AutoGenerateColumns="False" RowHeaderWidth="0"
|
|
|
GridLinesVisibility="None" ScrollViewer.HorizontalScrollBarVisibility="Hidden"
|
|
|
ScrollViewer.VerticalScrollBarVisibility="Hidden" BorderThickness="0" CanUserAddRows="False" HorizontalAlignment="Center"
|
|
|
Foreground="#FFFFFF" >
|
|
|
--><!--resourceStyle 399行修改选中字体颜色--><!--
|
|
|
<DataGrid.Columns>
|
|
|
<DataGridTextColumn Binding="{Binding Name}" Header="监听点位" Width="3*" IsReadOnly="True"/>
|
|
|
<DataGridTextColumn Binding="{Binding Value}" Header="监听值" Width="2*" IsReadOnly="True"/>
|
|
|
</DataGrid.Columns>
|
|
|
</DataGrid>-->
|
|
|
|
|
|
|
|
|
<StackPanel Grid.Row="2" HorizontalAlignment="Center" VerticalAlignment="Top" Orientation="Horizontal" >
|
|
|
<Button x:Name="StartSpiral1Button" Content="螺旋1启动" FontSize="25" Background="LimeGreen" Width="150" Height="40" Margin="0 0 20 0" Click="StartSpiral1Button_Click"/>
|
|
|
<Button x:Name="StartSpiral2Button" Content="螺旋2启动" FontSize="25" Background="LimeGreen" Width="150" Height="40" Margin="0 0 20 0" Click="StartSpiral2Button_Click"/>
|
|
|
<Button x:Name="StopSpiral1Button" Content="螺旋1停止" FontSize="25" Background="OrangeRed" Width="150" Height="40" Margin="0,0,20,0" Click="StopSpiral1Button_Click"/>
|
|
|
<Button x:Name="StopSpiral2Button" Content="螺旋2停止" FontSize="25" Background="OrangeRed" Width="150" Height="40" Margin="0,0,0,0" Click="StopSpiral2Button_Click"/>
|
|
|
</StackPanel>
|
|
|
</Grid>
|
|
|
</Border>
|
|
|
</Grid>
|
|
|
</Grid>
|
|
|
|
|
|
|
|
|
</UserControl>
|