59 lines
2.5 KiB
XML
59 lines
2.5 KiB
XML
<UserControl x:Class="Alarms2PageUC"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:EgtWPFLib="clr-namespace:EgtWPFLib;assembly=EgtWPFLib"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="768" d:DesignWidth="1280">
|
|
|
|
<Border Style="{DynamicResource OmagCut_PageBorder}">
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="4*"/>
|
|
<ColumnDefinition Width="4*"/>
|
|
<ColumnDefinition Width="4*"/>
|
|
<ColumnDefinition Width="3*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="2*"/>
|
|
<RowDefinition Height="0.5*"/>
|
|
<RowDefinition Height="1.5*"/>
|
|
<RowDefinition Height="0.5*"/>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="0.5*"/>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="1*"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<GroupBox Name="FinalSawCutGpBx" Style="{DynamicResource OmagCut_GroupBox}">
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="2*"/>
|
|
<ColumnDefinition Width="2*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="0.5*"/>
|
|
<RowDefinition Height="0.5*"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<TextBlock Name="EnableFinalSawCutTxBl" Grid.Column="0" Grid.Row="0"
|
|
Style="{DynamicResource OmagCut_ToolsDBTextBlock}"/>
|
|
<CheckBox Name="EnableFinalSawCutChBx" Grid.Column="1" Grid.Row="0" Margin="10,0,10,0"
|
|
Style="{StaticResource OmagCut_CheckBox_Single}"
|
|
HorizontalAlignment="Right"/>
|
|
|
|
<TextBlock Name="FinalDepthTxBl" Grid.Column="0" Grid.Row="1"
|
|
Style="{DynamicResource OmagCut_ToolsDBTextBlock}"/>
|
|
<EgtWPFLib:EgtTextBox Name="FinalDepthTxBx" Grid.Column="1" Grid.Row="1" Margin="10,0,10,0"
|
|
Style="{DynamicResource OmagCut_CalculatorTextBox}" />
|
|
|
|
|
|
|
|
</Grid>
|
|
</GroupBox>
|
|
</Grid>
|
|
</Border>
|
|
</UserControl>
|