| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <UserControl x:Class="JobModule.Views.JobNormal"
- 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:JobModule.Views"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800">
- <Border Background="#e6e6e6" Margin="8" CornerRadius="8">
- <Viewbox Margin="16" VerticalAlignment="Top">
- <Grid Width="1264" Height="760" >
- <Grid.RowDefinitions>
- <RowDefinition Height="auto"/>
- <RowDefinition Height="0"/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <UniformGrid Rows="1" >
- <Button Style="{StaticResource FunctionButton}" Height="140" Background="White" Margin="2" Command="{Binding PopCommand}" CommandParameter="LoadPop">
- <StackPanel>
- <TextBlock VerticalAlignment="Center" HorizontalAlignment="Center" Foreground="Black" FontSize="16">Load</TextBlock>
- <Image Source="/JobModule;component/Resources/Load.png" Height="36" Margin="0,16,0,0"/>
- </StackPanel>
- </Button>
- <Button Style="{StaticResource FunctionButton}" Background="White" Margin="2" Command="{Binding PopCommand}" CommandParameter="ProcessPop">
- <StackPanel>
- <TextBlock VerticalAlignment="Center" HorizontalAlignment="Center" Foreground="Black" FontSize="16">Process</TextBlock>
- <Image Source="/JobModule;component/Resources/Process.png" Height="36" Margin="0,16"/>
- </StackPanel>
- </Button>
- <Button Style="{StaticResource FunctionButton}" Background="White" Margin="2" Command="{Binding PopCommand}" CommandParameter="UnloadPop">
- <StackPanel>
- <TextBlock VerticalAlignment="Center" HorizontalAlignment="Center" Foreground="Black" FontSize="16">Unload</TextBlock>
- <Image Source="/JobModule;component/Resources/Unload.png" Height="36" Margin="0,16"/>
- </StackPanel>
- </Button>
- </UniformGrid>
- <UniformGrid Grid.Row="2" Columns="2" VerticalAlignment="Top">
- <Button Style="{StaticResource FunctionButton}" Background="White" Height="144" Margin="2" Command="{Binding PopCommand}" CommandParameter="ChargePop">
- <Image Source="/JobModule;component/Resources/Charge.png" Height="84" Margin="0,16"/>
- </Button>
- <Button Style="{StaticResource FunctionButton}" Background="White" Margin="2">
- <Image Source="/JobModule;component/Resources/Discharge.png" Height="84" Margin="0,16"/>
- </Button>
- <!--<Button Style="{StaticResource FunctionButton}" Background="White" Margin="2">
- <Image Source="/JobModule;component/Resources/MLoad.png" Height="84" Margin="0,16"/>
- </Button>
- <Button Style="{StaticResource FunctionButton}" Background="White" Margin="2">
- <Image Source="/JobModule;component/Resources/MUnload.png" Height="84" Margin="0,16"/>
- </Button>
- <Button Style="{StaticResource FunctionButton}" Background="White" Margin="2">
- <Image Source="/JobModule;component/Resources/SDLoad.png" Height="84" Margin="0,16"/>
- </Button>
- <Button Style="{StaticResource FunctionButton}" Background="White" Margin="2">
- <Image Source="/JobModule;component/Resources/SDUnload.png" Height="84" Margin="0,16"/>
- </Button>
- <Button Style="{StaticResource FunctionButton}" Background="White" Margin="2">
- <Image Source="/JobModule;component/Resources/EDLoad.png" Height="84" Margin="0,16"/>
- </Button>
- <Button Style="{StaticResource FunctionButton}" Background="White" Margin="2">
- <Image Source="/JobModule;component/Resources/EDUnload.png" Height="84" Margin="0,16"/>
- </Button>-->
- </UniformGrid>
- </Grid>
- </Viewbox>
- </Border>
- </UserControl>
|