| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <UserControl x:Class="SummaryModule.Dialogs.Views.HarewareInit"
- 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:local="clr-namespace:SummaryModule.Dialogs.Views"
- xmlns:TransControl="clr-namespace:SummaryModule.Controls.Transfer"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800">
- <UserControl.Resources>
- <ResourceDictionary >
- <ResourceDictionary.MergedDictionaries>
- <ResourceDictionary Source="/UICommon;component/Resources.xaml"/>
- </ResourceDictionary.MergedDictionaries>
- </ResourceDictionary>
- </UserControl.Resources>
- <Grid Margin="8">
- <Grid.RowDefinitions>
- <RowDefinition Height="auto"/>
- <RowDefinition Height="8"/>
- <RowDefinition Height="auto"/>
- <RowDefinition Height="8"/>
- <RowDefinition Height="auto"/>
- <RowDefinition Height="8"/>
- <RowDefinition Height="auto"/>
- <RowDefinition Height="8"/>
- <RowDefinition Height="auto"/>
- <RowDefinition Height="8"/>
- <RowDefinition Height="auto"/>
- <RowDefinition Height="8"/>
- <RowDefinition Height="auto"/>
- <RowDefinition Height="8"/>
- <RowDefinition Height="auto"/>
- <RowDefinition Height="8"/>
- <RowDefinition Height="auto"/>
- </Grid.RowDefinitions>
- <TransControl:InitControl Title="All"/>
- <TransControl:InitControl Grid.Row="2" Title="Carrier Robot"/>
- <TransControl:InitControl Grid.Row="4" Title="Wafer Robot"/>
- <TransControl:InitControl Grid.Row="6" Title="LoadPort 1"/>
- <TransControl:InitControl Grid.Row="8" Title="LoadPort 2"/>
- <TransControl:InitControl Grid.Row="10" Title="Boat"/>
- <TransControl:InitControl Grid.Row="12" Title="FIMS 1"/>
- <TransControl:InitControl Grid.Row="14" Title="FIMS 2"/>
- </Grid>
- </UserControl>
|