17 lines
966 B
Plaintext
17 lines
966 B
Plaintext
|
|
<UserControl x:Class="MainShell.ParaSetting.View.WaferLoadProcessParameterView"
|
||
|
|
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="160" d:DesignWidth="800">
|
||
|
|
<Grid Margin="4" HorizontalAlignment="Stretch">
|
||
|
|
<StackPanel>
|
||
|
|
<GroupBox Header="{DynamicResource ProcessControlGroup}" Style="{StaticResource ProcessWideCardGroupBoxStyle}">
|
||
|
|
<WrapPanel>
|
||
|
|
<ToggleButton Style="{StaticResource ProcessToggleStyle}" Content="{DynamicResource EnableWaferLoad}" IsChecked="{Binding Parameter.EnableProcess}"/>
|
||
|
|
</WrapPanel>
|
||
|
|
</GroupBox>
|
||
|
|
</StackPanel>
|
||
|
|
</Grid>
|
||
|
|
</UserControl>
|