|
- <UserControl
- x:Class="BPASmartClient.JXJFoodBigStation.View.ManualFlowView"
- 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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:pry="clr-namespace:BPASmartClient.CustomResource.UserControls;assembly=BPASmartClient.CustomResource"
- xmlns:vm="clr-namespace:BPASmartClient.JXJFoodBigStation.ViewModel"
- d:DesignHeight="1080"
- d:DesignWidth="1920"
- mc:Ignorable="d">
- <UserControl.DataContext>
- <vm:ManualFlowViewModel />
- </UserControl.DataContext>
-
- <Grid Margin="10">
- <Grid.RowDefinitions>
- <RowDefinition Height="50" />
- <RowDefinition Height="50" />
- <RowDefinition Height="100" />
- <RowDefinition Height="1*" />
- </Grid.RowDefinitions>
- <!--#region 表格标题栏设置-->
- <Grid>
- <StackPanel
- HorizontalAlignment="left"
- VerticalAlignment="Center"
- Orientation="Horizontal">
- <Button
- Width="200"
- Height="40"
- Margin="5,0,5,0"
- Panel.ZIndex="0"
- Command="{Binding TrayInPlace}"
- CommandParameter="1"
- Content="AGV到达工位1"
- FontSize="20"
- Style="{StaticResource ImageButtonStyle}" />
- <Button
- Width="200"
- Height="40"
- Margin="5,0,5,0"
- Panel.ZIndex="0"
- Command="{Binding TrayInPlace}"
- CommandParameter="2"
- Content="AGV到达工位2"
- FontSize="20"
- Style="{StaticResource ImageButtonStyle}" />
- <Button
- Width="200"
- Height="40"
- Margin="5,0,5,0"
- Panel.ZIndex="0"
- Command="{Binding TrayInPlace}"
- CommandParameter="3"
- Content="AGV到达工位3"
- FontSize="20"
- Style="{StaticResource ImageButtonStyle}" />
- <Button
- Width="200"
- Height="40"
- Margin="5,0,5,0"
- Panel.ZIndex="0"
- Command="{Binding TrayInPlace}"
- CommandParameter="4"
- Content="AGV到达工位4"
- FontSize="20"
- Style="{StaticResource ImageButtonStyle}" />
- <Button
- Width="200"
- Height="40"
- Margin="5,0,5,0"
- Panel.ZIndex="0"
- Command="{Binding TrayInPlace}"
- CommandParameter="5"
- Content="AGV到达工位5"
- FontSize="20"
- Style="{StaticResource ImageButtonStyle}" />
- </StackPanel>
- </Grid>
- <Grid Grid.Row="1">
- <StackPanel
- HorizontalAlignment="left"
- VerticalAlignment="Center"
- Orientation="Horizontal">
- <Button
- Width="200"
- Height="40"
- Margin="5,0,5,0"
- Panel.ZIndex="0"
- Command="{Binding TrayLeave}"
- CommandParameter="1"
- Content="AGV离开工位1"
- FontSize="20"
- Style="{StaticResource ImageButtonStyle}" />
- <Button
- Width="200"
- Height="40"
- Margin="5,0,5,0"
- Panel.ZIndex="0"
- Command="{Binding TrayLeave}"
- CommandParameter="2"
- Content="AGV离开工位2"
- FontSize="20"
- Style="{StaticResource ImageButtonStyle}" />
- <Button
- Width="200"
- Height="40"
- Margin="5,0,5,0"
- Panel.ZIndex="0"
- Command="{Binding TrayLeave}"
- CommandParameter="3"
- Content="AGV离开工位3"
- FontSize="20"
- Style="{StaticResource ImageButtonStyle}" />
- <Button
- Width="200"
- Height="40"
- Margin="5,0,5,0"
- Panel.ZIndex="0"
- Command="{Binding TrayLeave}"
- CommandParameter="4"
- Content="AGV离开工位4"
- FontSize="20"
- Style="{StaticResource ImageButtonStyle}" />
- <Button
- Width="200"
- Height="40"
- Margin="5,0,5,0"
- Panel.ZIndex="0"
- Command="{Binding TrayLeave}"
- CommandParameter="5"
- Content="AGV离开工位5"
- FontSize="20"
- Style="{StaticResource ImageButtonStyle}" />
- </StackPanel>
- </Grid>
-
- <Grid Grid.Row="2">
- <StackPanel
- HorizontalAlignment="left"
- VerticalAlignment="Center"
- Orientation="Horizontal">
- <Button
- Width="200"
- Height="40"
- Margin="5,0,5,0"
- Panel.ZIndex="0"
- Command="{Binding ClearTrayInPlace}"
- Content="清除AGV到位信号"
- FontSize="20"
- Style="{StaticResource ImageButtonStyle}" />
- <Button
- Width="200"
- Height="40"
- Margin="5,0,5,0"
- Panel.ZIndex="0"
- Command="{Binding ClearAllRecipe}"
- Content="清除西门子所有配方"
- FontSize="20"
- Style="{StaticResource ImageButtonStyle}" />
- </StackPanel>
- </Grid>
- <Grid Grid.Row="3">
- <Grid.ColumnDefinitions>
- <ColumnDefinition />
- <ColumnDefinition />
- <ColumnDefinition />
- </Grid.ColumnDefinitions>
- <StackPanel>
- <WrapPanel>
- <TextBlock
- Margin="10,0,5,0"
- VerticalAlignment="Center"
- FontSize="25"
- Foreground="#FF2AB2E7"
- Text="PLC心跳:" />
- <TextBlock
- Margin="10"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- FontSize="25"
- Foreground="#FF2AB2E7"
- Text="{Binding Heartbeat}" />
- </WrapPanel>
- <WrapPanel>
- <TextBlock
- Margin="10,0,5,0"
- VerticalAlignment="Center"
- FontSize="25"
- Foreground="#FF2AB2E7"
- Text="订单号:" />
- <TextBox
- Width="300"
- Margin="5"
- VerticalAlignment="Center"
- FontSize="24"
- Text="{Binding CancelRecipeCode}" />
- <Button
- Width="120"
- Height="40"
- Margin="5"
- Command="{Binding CancelRecipeCommand}"
- Content="取消订单"
- FontSize="20"
- Style="{StaticResource ImageButtonStyle}" />
- </WrapPanel>
- </StackPanel>
- <StackPanel Grid.Column="3">
- <WrapPanel>
- <TextBlock
- Margin="10,0,5,0"
- VerticalAlignment="Center"
- FontSize="25"
- Foreground="#FF2AB2E7"
- Text="料仓名称:" />
- <TextBlock
- Margin="5"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- FontSize="25"
- Foreground="#FF2AB2E7"
- Text="{Binding StockBinName}" />
- </WrapPanel>
- <WrapPanel>
- <TextBlock
- Margin="10,0,5,0"
- VerticalAlignment="Center"
- FontSize="25"
- Foreground="#FF2AB2E7"
- Text="料仓1名称:" />
- <TextBlock
- Margin="5"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- FontSize="25"
- Foreground="#FF2AB2E7"
- Text="{Binding StockBin1Name}" />
- </WrapPanel>
- <WrapPanel>
- <TextBlock
- Margin="10,0,5,0"
- VerticalAlignment="Center"
- FontSize="25"
- Foreground="#FF2AB2E7"
- Text="料仓2名称:" />
- <TextBlock
- Margin="5"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- FontSize="25"
- Foreground="#FF2AB2E7"
- Text="{Binding StockBin2Name}" />
- </WrapPanel>
- <WrapPanel>
- <TextBlock
- Margin="10,0,5,0"
- VerticalAlignment="Center"
- FontSize="25"
- Foreground="#FF2AB2E7"
- Text="料仓3名称:" />
- <TextBlock
- Margin="5"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- FontSize="25"
- Foreground="#FF2AB2E7"
- Text="{Binding StockBin3Name}" />
- </WrapPanel>
- <WrapPanel>
- <TextBlock
- Margin="10,0,5,0"
- VerticalAlignment="Center"
- FontSize="25"
- Foreground="#FF2AB2E7"
- Text="料仓4名称:" />
- <TextBlock
- Margin="5"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- FontSize="25"
- Foreground="#FF2AB2E7"
- Text="{Binding StockBin4Name}" />
- </WrapPanel>
- <WrapPanel>
- <TextBlock
- Margin="10,0,5,0"
- VerticalAlignment="Center"
- FontSize="25"
- Foreground="#FF2AB2E7"
- Text="料仓5名称:" />
- <TextBlock
- Margin="5"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- FontSize="25"
- Foreground="#FF2AB2E7"
- Text="{Binding StockBin5Name}" />
- </WrapPanel>
- <WrapPanel>
- <TextBlock
- Margin="10,0,5,0"
- VerticalAlignment="Center"
- FontSize="25"
- Foreground="#FF2AB2E7"
- Text="料仓6名称:" />
- <TextBlock
- Margin="5"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- FontSize="25"
- Foreground="#FF2AB2E7"
- Text="{Binding StockBin6Name}" />
- </WrapPanel>
- <WrapPanel>
- <TextBlock
- Margin="10,0,5,0"
- VerticalAlignment="Center"
- FontSize="25"
- Foreground="#FF2AB2E7"
- Text="料仓7名称:" />
- <TextBlock
- Margin="5"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- FontSize="25"
- Foreground="#FF2AB2E7"
- Text="{Binding StockBin7Name}" />
- </WrapPanel>
- <WrapPanel>
- <TextBlock
- Margin="10,0,5,0"
- VerticalAlignment="Center"
- FontSize="25"
- Foreground="#FF2AB2E7"
- Text="料仓8名称:" />
- <TextBlock
- Margin="5"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- FontSize="25"
- Foreground="#FF2AB2E7"
- Text="{Binding StockBin8Name}" />
- </WrapPanel>
- <WrapPanel>
- <TextBlock
- Margin="10,0,5,0"
- VerticalAlignment="Center"
- FontSize="25"
- Foreground="#FF2AB2E7"
- Text="料仓9名称:" />
- <TextBlock
- Margin="5"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- FontSize="25"
- Foreground="#FF2AB2E7"
- Text="{Binding StockBin9Name}" />
- </WrapPanel>
- <WrapPanel>
- <TextBlock
- Margin="10,0,5,0"
- VerticalAlignment="Center"
- FontSize="25"
- Foreground="#FF2AB2E7"
- Text="料仓10名称:" />
- <TextBlock
- Margin="5"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- FontSize="25"
- Foreground="#FF2AB2E7"
- Text="{Binding StockBin10Name}" />
- </WrapPanel>
- <WrapPanel>
- <TextBlock
- Margin="10,0,5,0"
- VerticalAlignment="Center"
- FontSize="25"
- Foreground="#FF2AB2E7"
- Text="料仓11名称:" />
- <TextBlock
- Margin="5"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- FontSize="25"
- Foreground="#FF2AB2E7"
- Text="{Binding StockBin11Name}" />
- </WrapPanel>
- <WrapPanel>
- <TextBlock
- Margin="10,0,5,0"
- VerticalAlignment="Center"
- FontSize="25"
- Foreground="#FF2AB2E7"
- Text="料仓12名称:" />
- <TextBlock
- Margin="5"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- FontSize="25"
- Foreground="#FF2AB2E7"
- Text="{Binding StockBin12Name}" />
- </WrapPanel>
- <WrapPanel>
- <TextBlock
- Margin="10,0,5,0"
- VerticalAlignment="Center"
- FontSize="25"
- Foreground="#FF2AB2E7"
- Text="料仓13名称:" />
- <TextBlock
- Margin="5"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- FontSize="25"
- Foreground="#FF2AB2E7"
- Text="{Binding StockBin13Name}" />
- </WrapPanel>
- <WrapPanel>
- <TextBlock
- Margin="10,0,5,0"
- VerticalAlignment="Center"
- FontSize="25"
- Foreground="#FF2AB2E7"
- Text="料仓14名称:" />
- <TextBlock
- Margin="5"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- FontSize="25"
- Foreground="#FF2AB2E7"
- Text="{Binding StockBin14Name}" />
- </WrapPanel>
- </StackPanel>
- </Grid>
- </Grid>
- </UserControl>
|