PLCView.xaml 641 B

1234567891011121314151617
  1. <UserControl
  2. x:Class="FurnaceSimulator.Views.PLCView"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:local="clr-namespace:FurnaceSimulator.Views"
  6. Background="{StaticResource viewBackgroundColor}">
  7. <TabControl Style="{StaticResource LargeTab}">
  8. <TabItem Header="Tube">
  9. <local:SimulatorPlcFloatIOView
  10. IoMapFile="SiBCN\\_ioDefinePM.xml"
  11. Module="PM1"
  12. Port="6740"
  13. Source="System.PM1" />
  14. </TabItem>
  15. </TabControl>
  16. </UserControl>