HarewareInit.xaml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <UserControl x:Class="SummaryModule.Dialogs.Views.HarewareInit"
  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:local="clr-namespace:SummaryModule.Dialogs.Views"
  7. xmlns:TransControl="clr-namespace:SummaryModule.Controls.Transfer"
  8. mc:Ignorable="d"
  9. d:DesignHeight="450" d:DesignWidth="800">
  10. <UserControl.Resources>
  11. <ResourceDictionary >
  12. <ResourceDictionary.MergedDictionaries>
  13. <ResourceDictionary Source="/UICommon;component/Resources.xaml"/>
  14. </ResourceDictionary.MergedDictionaries>
  15. </ResourceDictionary>
  16. </UserControl.Resources>
  17. <Grid Margin="8">
  18. <Grid.RowDefinitions>
  19. <RowDefinition Height="auto"/>
  20. <RowDefinition Height="8"/>
  21. <RowDefinition Height="auto"/>
  22. <RowDefinition Height="8"/>
  23. <RowDefinition Height="auto"/>
  24. <RowDefinition Height="8"/>
  25. <RowDefinition Height="auto"/>
  26. <RowDefinition Height="8"/>
  27. <RowDefinition Height="auto"/>
  28. <RowDefinition Height="8"/>
  29. <RowDefinition Height="auto"/>
  30. <RowDefinition Height="8"/>
  31. <RowDefinition Height="auto"/>
  32. <RowDefinition Height="8"/>
  33. <RowDefinition Height="auto"/>
  34. <RowDefinition Height="8"/>
  35. <RowDefinition Height="auto"/>
  36. </Grid.RowDefinitions>
  37. <TransControl:InitControl Title="All"/>
  38. <TransControl:InitControl Grid.Row="2" Title="Carrier Robot"/>
  39. <TransControl:InitControl Grid.Row="4" Title="Wafer Robot"/>
  40. <TransControl:InitControl Grid.Row="6" Title="LoadPort 1"/>
  41. <TransControl:InitControl Grid.Row="8" Title="LoadPort 2"/>
  42. <TransControl:InitControl Grid.Row="10" Title="Boat"/>
  43. <TransControl:InitControl Grid.Row="12" Title="FIMS 1"/>
  44. <TransControl:InitControl Grid.Row="14" Title="FIMS 2"/>
  45. </Grid>
  46. </UserControl>