MainWindow.xaml 1.0 KB

12345678910111213141516171819202122232425
  1. <Window x:Class="FestoDebugger.MainWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:FestoDebugger"
  7. xmlns:UserControls="clr-namespace:FestoDebugger.UserControls"
  8. mc:Ignorable="d"
  9. Title="FestoDebuger" Height="450" Width="800">
  10. <ScrollViewer>
  11. <ItemsControl ItemsSource="{Binding SignalControls}">
  12. <ItemsControl.ItemsPanel>
  13. <ItemsPanelTemplate>
  14. <WrapPanel Orientation="Horizontal"/>
  15. </ItemsPanelTemplate>
  16. </ItemsControl.ItemsPanel>
  17. <ItemsControl.ItemTemplate>
  18. <DataTemplate>
  19. <UserControls:FestoControl />
  20. </DataTemplate>
  21. </ItemsControl.ItemTemplate>
  22. </ItemsControl>
  23. </ScrollViewer>
  24. </Window>