答案 0 :(得分:2)
您可以将该地块包裹在ViewBox
示例:
<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="WpfApplication13.MainWindow"
Title="MainWindow" x:Name="UI" Width="459" Height="293" >
<Viewbox Stretch="Uniform">
<Grid Width="1024" Height="768" >
<All your content .....
</Grid>
</Viewbox>
</Window>