<Window x:Class="Test.MainWindow"
|
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:form="clr-namespace:System.Windows.Forms;assembly=System.Windows.Forms"
|
xmlns:formHost="clr-namespace:System.Windows.Forms.Integration;assembly=WindowsFormsIntegration"
|
xmlns:local="clr-namespace:Test"
|
mc:Ignorable="d"
|
Title="MainWindow" Height="450" Width="800">
|
|
<ScrollViewer x:Name="scrolls" VerticalScrollBarVisibility="Auto" HorizontalScrollBarVisibility="Auto" Height="300">
|
<ScrollViewer.Content>
|
<formHost:WindowsFormsHost Height="400" Width="700" x:Name="pictureBox">
|
<form:PictureBox Height="200" Width="1000">
|
</form:PictureBox>
|
</formHost:WindowsFormsHost>
|
</ScrollViewer.Content>
|
</ScrollViewer>
|
</Window>
|