zhangyk-c
2024-07-31 f1741c1fd0f62fd2053b4ffe2caf59b31b68f8c2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<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>