我最近一直在玩 WPF。我有点困惑,因为我的程序在运行时看起来与我在设计器中创建的不同。
我确信这是有正当理由的,但我无法理解为什么如此基本的东西必须如此“神秘”。
具体来说,我的意思是按钮和窗口内边框之间的底部和右边距。
设计师:
运行程序:
希望有人可以帮助解决这个问题。
XAML:
<Window x:Class="WpfApplication1.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>
<Button Content="Button" HorizontalAlignment="Left" Margin="432,289,0,0"
VerticalAlignment="Top" Width="75" RenderTransformOrigin="-1.387,-0.75"/>
</Grid>