73 lines
3.0 KiB
XML
73 lines
3.0 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">
|
|
|
|
<StackPanel IsEnabled="{Binding SplitModeIsEnabled}">
|
|
<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>
|
|
|
|
<Border Margin="0,0,0,5" Style="{StaticResource Border}">
|
|
|
|
<StackPanel>
|
|
|
|
<UniformGrid Columns="3" Margin="0,0,0,5">
|
|
|
|
<Button Visibility="Hidden"
|
|
Margin="0,0,2.5,0" Padding="0"/>
|
|
<Button Content="{Binding PauseMsg}"
|
|
Style="{StaticResource OptionPanel_TextWrapButton}"
|
|
Command="{Binding PauseCommand}"
|
|
IsEnabled="{Binding PauseBtnIsEnable}"
|
|
Margin="2.5,2.5,2.5,0"/>
|
|
<Button Visibility="Hidden"
|
|
Margin="2.5,0,0,0"/>
|
|
|
|
</UniformGrid>
|
|
</StackPanel>
|
|
</Border>
|
|
</StackPanel>
|
|
</UserControl>
|