IO_Tube_AI.xaml 1.4 KB

123456789101112131415161718192021222324252627282930313233
  1. <UserControl x:Class="MaintainModule.Views.IOTube.IO_Tube_AI"
  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:MaintainModule.Views.IOTube"
  7. xmlns:control="clr-namespace:MaintainModule.Controls"
  8. mc:Ignorable="d"
  9. d:DesignHeight="450" d:DesignWidth="800">
  10. <UserControl.Resources>
  11. <ResourceDictionary >
  12. <ResourceDictionary.MergedDictionaries>
  13. <ResourceDictionary Source="/UICommon;component/Resources.xaml"/>
  14. </ResourceDictionary.MergedDictionaries>
  15. </ResourceDictionary>
  16. </UserControl.Resources>
  17. <ScrollViewer>
  18. <UniformGrid Columns="3" VerticalAlignment="Top">
  19. <control:IO_Float_ReadOnly/>
  20. <control:IO_Float_ReadOnly/>
  21. <control:IO_Float_ReadOnly/>
  22. <control:IO_Float_ReadOnly/>
  23. <control:IO_Float_ReadOnly/>
  24. <control:IO_Float_ReadOnly/>
  25. <control:IO_Float_ReadOnly/>
  26. <control:IO_Float_ReadOnly/>
  27. <control:IO_Float_ReadOnly/>
  28. </UniformGrid>
  29. </ScrollViewer>
  30. </UserControl>