123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <UserControl
- x:Class="FurnaceSimulator.Views.PLCView"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:local="clr-namespace:FurnaceSimulator.Views"
- Background="{StaticResource viewBackgroundColor}">
- <TabControl Style="{StaticResource LargeTab}">
- <TabItem Header="Tube">
- <local:SimulatorPlcFloatIOView
- IoMapFile="ELK\\_ioDefinePM.xml"
- Module="PM1"
- Port="6740"
- Source="System.PM1"/>
- </TabItem>
- <TabItem Header="GasLine1">
- <local:SimulatorPlcFloatIOView
- IoMapFile="ELK\\_ioDefineGasLine.xml"
- Module="GasLine1"
- Port="6741"
- Source="System.GasLine1"/>
- </TabItem>
- <TabItem Header="GasLine2">
- <local:SimulatorPlcFloatIOView
- IoMapFile="ELK\\_ioDefineGasLine.xml"
- Module="GasLine2"
- Port="6742"
- Source="System.GasLine2"/>
- </TabItem>
- <TabItem Header="GasLine3">
- <local:SimulatorPlcFloatIOView
- IoMapFile="ELK\\_ioDefineGasLine.xml"
- Module="GasLine3"
- Port="6743"
- Source="System.GasLine3"/>
- </TabItem>
- <TabItem Header="GasLine4">
- <local:SimulatorPlcFloatIOView
- IoMapFile="ELK\\_ioDefineGasLine.xml"
- Module="GasLine4"
- Port="6744"
- Source="System.GasLine4"/>
- </TabItem>
- <TabItem Header="GasLine6">
- <local:SimulatorPlcFloatIOView
- IoMapFile="ELK\\_ioDefineGasLine.xml"
- Module="GasLine6"
- Port="6746"
- Source="System.GasLine6"/>
- </TabItem>
- <TabItem Header="GasLine7">
- <local:SimulatorPlcFloatIOView
- IoMapFile="ELK\\_ioDefineGasLine.xml"
- Module="GasLine7"
- Port="6747"
- Source="System.GasLine7"/>
- </TabItem>
- <!--<TabItem Header="GasLine8">
- <local:SimulatorPlcFloatIOView
- IoMapFile="ELK\\_ioDefineGasLine.xml"
- Module="GasLine8"
- Port="6748"
- Source="System.GasLine8"/>
- </TabItem>-->
- </TabControl>
- </UserControl>
|