Files
omagoffice/OptionPanel/MachiningTab/FinalMoveRawModeV.xaml
T

51 lines
2.1 KiB
XML

<UserControl x:Class="FinalMoveRawModeV"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:EgtWPFLib5="clr-namespace:EgtWPFLib5;assembly=EgtWPFLib5">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="1*"/>
<ColumnDefinition Width="1*"/>
<ColumnDefinition Width="1*"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="1*"/>
<RowDefinition Height="1*"/>
<RowDefinition Height="1*"/>
</Grid.RowDefinitions>
<Button Name="TopLBtn" Grid.Column="0" Grid.Row="0"
Style="{StaticResource OptionPanel_NestingButton}"
Command="{Binding TopLeftCommand}">
<Image Source="/Resources/NestingTab/TopLeft.png" Stretch="Uniform"/>
</Button>
<Button Name="TopRBtn" Grid.Column="2" Grid.Row="0"
Style="{StaticResource OptionPanel_NestingButton}"
Command="{Binding TopRightCommand}">
<Image Source="/Resources/NestingTab/TopRight.png" Stretch="Uniform"/>
</Button>
<Button Name="ResetBtn" Grid.Column="1" Grid.Row="1"
Content="Reset"
Style="{StaticResource OptionPanel_NestingButton}"
Command="{Binding ResetCommand}">
</Button>
<Button Name="BottomLBtn" Grid.Column="0" Grid.Row="2"
Style="{StaticResource OptionPanel_NestingButton}"
Command="{Binding BottomLeftCommand}">
<Image Source="/Resources/NestingTab/BottomLeft.png" Stretch="Uniform"/>
</Button>
<Button Name="BottomRBtn" Grid.Column="2" Grid.Row="2"
Style="{StaticResource OptionPanel_NestingButton}"
Command="{Binding BottomRightCommand}">
<Image Source="/Resources/NestingTab/BottomRight.png" Stretch="Uniform"/>
</Button>
</Grid>
</UserControl>