1234567891011121314151617181920212223242526 |
- <Window x:Class="PRSDesktop.Panels.DataEntry.DataEntryDocumentWindow"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:local="clr-namespace:PRSDesktop.Panels.DataEntry"
- xmlns:wpf="clr-namespace:InABox.WPF;assembly=InABox.Wpf"
- mc:Ignorable="d"
- Title="DataEntryDocumentWindow" Height="800" Width="800"
- x:Name="Window"
- DataContext="{Binding ElementName=Window}">
- <wpf:ZoomPanel Background="Gray">
- <ItemsControl ItemsSource="{Binding Images}" x:Name="Items">
- <ItemsControl.ItemsPanel>
- <ItemsPanelTemplate>
- <StackPanel Orientation="Vertical"/>
- </ItemsPanelTemplate>
- </ItemsControl.ItemsPanel>
- <ItemsControl.ItemTemplate>
- <DataTemplate DataType="ImageSource">
- <Image Source="{Binding}"/>
- </DataTemplate>
- </ItemsControl.ItemTemplate>
- </ItemsControl>
- </wpf:ZoomPanel>
- </Window>
|