30 lines
2.1 KiB
XML
30 lines
2.1 KiB
XML
<UserControl x:Class="MainShell.ParaSetting.View.BondingProcessParameterView"
|
|
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"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="260" d:DesignWidth="1000">
|
|
<Grid Margin="4" HorizontalAlignment="Stretch">
|
|
<StackPanel>
|
|
<GroupBox Header="{DynamicResource ProcessControlGroup}" Style="{StaticResource ProcessWideCardGroupBoxStyle}">
|
|
<WrapPanel>
|
|
<ToggleButton Style="{StaticResource ProcessToggleStyle}" Content="{DynamicResource EnableBondingProcess}" IsChecked="{Binding Parameter.EnableProcess}"/>
|
|
<ToggleButton Style="{StaticResource ProcessToggleStyle}" Content="{DynamicResource IsNeedleUpWhenBonding}" IsChecked="{Binding Parameter.IsNeedleUpWhenBonding}"/>
|
|
</WrapPanel>
|
|
</GroupBox>
|
|
<GroupBox Header="{DynamicResource BondingProcessParameterGroup}" Style="{StaticResource ProcessWideCardGroupBoxStyle}">
|
|
<StackPanel>
|
|
<StackPanel Style="{StaticResource ProcessParameterRowStyle}">
|
|
<Label Style="{StaticResource ProcessLabelStyle}" Content="{DynamicResource UseAllDieLabel}"/>
|
|
<ToggleButton Style="{StaticResource ProcessToggleStyle}" Content="{DynamicResource EnabledLabel}" IsChecked="{Binding Parameter.UseAllDie}"/>
|
|
</StackPanel>
|
|
<StackPanel Orientation="Horizontal" Margin="0,0,24,0">
|
|
<Label Style="{StaticResource ProcessLabelStyle}" Content="{DynamicResource AirCoolAllProduceLabel}"/>
|
|
<ToggleButton Style="{StaticResource ProcessToggleStyle}" Content="{DynamicResource EnabledLabel}" IsChecked="{Binding Parameter.UseAirCoolAllProduce}"/>
|
|
</StackPanel>
|
|
</StackPanel>
|
|
</GroupBox>
|
|
</StackPanel>
|
|
</Grid>
|
|
</UserControl> |