31 lines
1.6 KiB
XML
31 lines
1.6 KiB
XML
<UserControl x:Class="MachiningParameterExpanderV"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:EgtCAM5="clr-namespace:EgtCAM5">
|
|
|
|
<UserControl.Resources>
|
|
<EgtCAM5:DepthUnitConverter x:Key="DepthUnitConverter"/>
|
|
</UserControl.Resources>
|
|
|
|
<StackPanel>
|
|
<ContentControl Content="{Binding Path=ParamExpanderPageV}" />
|
|
|
|
<Button Name="ApplyMachBtn" Height="30" Content="{Binding UpdateMachiningBtnMsg}"
|
|
Command="{Binding UpdateMachiningCommand}" Background="{Binding UpdateMachiningBtn_Background}"/>
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="2*"/>
|
|
<ColumnDefinition Width="1*"/>
|
|
<ColumnDefinition Width="1*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<ToggleButton Name="ViewToolBtn" Grid.Column="0" Height="30" Content="{Binding ViewToolBtnMsg}"
|
|
IsChecked="{Binding ViewTool}" />
|
|
<Button Name="NextStepToolBtn" Grid.Column="1" Height="30" Content="{Binding NextStepToolBtnMsg}"
|
|
Command="{Binding NextStepToolCommand}" IsEnabled="{Binding IsChecked, ElementName=ViewToolBtn}"/>
|
|
<Button Name="PrevStepToolBtn" Grid.Column="2" Height="30" Content="{Binding PrevStepToolBtnMsg}"
|
|
Command="{Binding PrevStepToolCommand}" IsEnabled="{Binding IsChecked, ElementName=ViewToolBtn}"/>
|
|
</Grid>
|
|
</StackPanel>
|
|
|
|
</UserControl>
|