IOTube_DI.xaml 1.5 KB

12345678910111213141516171819202122232425262728293031323334
  1. <UserControl x:Class="MaintainModule.Views.IOTube.IOTube_DI"
  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. mc:Ignorable="d"
  8. xmlns:control="clr-namespace:MaintainModule.Controls"
  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="4" VerticalAlignment="Top">
  19. <control:IO_Bool_Readonly/>
  20. <control:IO_Bool_Readonly/>
  21. <control:IO_Bool_Readonly/>
  22. <control:IO_Bool_Readonly/>
  23. <control:IO_Bool_Readonly/>
  24. <control:IO_Bool_Readonly/>
  25. <control:IO_Bool_Readonly/>
  26. <control:IO_Bool_Readonly/>
  27. <control:IO_Bool_Readonly/>
  28. <control:IO_Bool_Readonly/>
  29. <control:IO_Bool_Readonly/>
  30. <control:IO_Bool_Readonly/>
  31. </UniformGrid>
  32. </ScrollViewer>
  33. </UserControl>