SimulatorE84View.xaml 1.1 KB

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