12345678910111213141516171819 |
- <UserControl x:Class="EfemDualUI.Views.Recipe.Clean.PMCleanView"
- 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"
- xmlns:clean1="clr-namespace:EfemDualUI.Views.Recipe.Clean"
- mc:Ignorable="d"
- d:DesignHeight="850" d:DesignWidth="1920" >
- <Grid Margin="10,20,10,10" >
- <Grid.RowDefinitions>
- <RowDefinition Height="184"/>
- </Grid.RowDefinitions>
- <clean1:ChamberClean Grid.Row="0" CleanData="{Binding CleanDataPM}"/>
- </Grid>
- </UserControl>
|