ボーダーアウトサイドキャンバスタグがあります、今私は最大化されたウィンドウに従ってキャンバスのサイズを最大化したいです
<ScrollViewer x:Name="scrollViewer" VerticalScrollBarVisibility="Auto" HorizontalScrollBarVisibility="Auto">
<Border BorderBrush="DarkGray" BorderThickness="1">
<Canvas x:Name="canvas" VerticalAlignment="Stretch" HorizontalAlignment="Stretch" AllowDrop="True" Background="Transparent" PreviewDragOver="canvas_DragOver" PreviewDrop="canvas_Drop" Width="600" Height="500">
<TextBlock x:Name="tb" AllowDrop="True" Text="WorkBench" TextAlignment="Center" Width="100" Height="20" Canvas.Left="258" Canvas.Top="0" ToolTip="Drag and Drop Tools Here" />
</Canvas>
</Border>
</ScrollViewer>