16 lines
810 B
XML
16 lines
810 B
XML
<Window x:Class="ClientDemo.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:local="clr-namespace:ClientDemo"
|
|
mc:Ignorable="d"
|
|
Title="预览" Height="600" Width="1000">
|
|
<Grid x:Name="Wrap">
|
|
<Canvas>
|
|
<Grid x:Name="sub" Width="{Binding ElementName=Wrap,Path=ActualWidth}" Height="{Binding ElementName=Wrap,Path=ActualHeight}" Canvas.Top="0" Canvas.Left="0"></Grid>
|
|
<Grid x:Name="main" Width="150" Height="150" Canvas.Right="20" Canvas.Bottom="20"></Grid>
|
|
</Canvas>
|
|
</Grid>
|
|
</Window>
|