PMCleanView.xaml 779 B

12345678910111213141516171819
  1. <UserControl x:Class="EfemDualUI.Views.Recipe.Clean.PMCleanView"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:clean1="clr-namespace:EfemDualUI.Views.Recipe.Clean"
  7. mc:Ignorable="d"
  8. d:DesignHeight="850" d:DesignWidth="1920" >
  9. <Grid Margin="10,20,10,10" >
  10. <Grid.RowDefinitions>
  11. <RowDefinition Height="184"/>
  12. </Grid.RowDefinitions>
  13. <clean1:ChamberClean Grid.Row="0" CleanData="{Binding CleanDataPM}"/>
  14. </Grid>
  15. </UserControl>