我是 WPF 新手,习惯于 winforms。我不明白为什么编译的输出与设计视图中的不同。我觉得这有点烦人和误导。
添加元素时,我将它们捕捉到红色边框,结果与我在编译窗口中看到的不一致。在 winforms 中,我习惯于使用表格布局、面板以及停靠和对齐项目。在 WPF 中是否有正确的方法来获得一致的结果?
XAML
<Window x:Class="WpfApplication4.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<Grid>
<Rectangle Fill="#FFF4F4F5" HorizontalAlignment="Left" Height="300" Margin="10,10,0,0" Stroke="Black" VerticalAlignment="Top" Width="497"/>
</Grid>
</Window>