12345678910111213141516171819 |
- <UserControl x:Class="EfemSimulator.Views.SimulatorE84View"
- 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:EfemSimulator.Views"
- xmlns:ioProviders="clr-namespace:MECF.Framework.Simulator.Core.IoProviders;assembly=MECF.Framework.Simulator.Core"
- mc:Ignorable="d"
- d:DesignHeight="300" d:DesignWidth="300">
- <Grid>
- <WrapPanel Orientation="Horizontal">
- <ioProviders:E84SimulatorUnitView LoadPortName="LP1" IsFloorVehicle="False"/>
- <ioProviders:E84SimulatorUnitView LoadPortName="LP2" IsFloorVehicle="False"/>
- <ioProviders:E84SimulatorUnitView LoadPortName="LP3" IsFloorVehicle="False"/>
- <ioProviders:E84SimulatorUnitView LoadPortName="LP4" IsFloorVehicle="False"/>
- </WrapPanel>
- </Grid>
- </UserControl>
|