Windows 电话 8,XAML。我有两个彼此相邻Line
的水平拉伸对象。StackPanel
其中任何一个都没有左边距或右边距。然而,它们之间存在明显的差距。XAML 去:
<StackPanel x:Name="Root" Orientation="Horizontal">
<Line
x:Name="LHLine11"
Margin="0,50,0,0"
Stretch="Fill"
Width="10"
X1="0" X2="1" Y1="0" Y2="0"
StrokeThickness="1"
VerticalAlignment="Top"
Stroke="{StaticResource PhoneButtonBasePressedForegroundBrush}"
/>
<Line
x:Name="LHLine1"
Margin="0,50,0,0"
Stretch="Fill"
Width="10"
X1="0" X2="1" Y1="0" Y2="0"
StrokeThickness="1"
VerticalAlignment="Top"
Stroke="{StaticResource PhoneButtonBasePressedForegroundBrush}"
/>
</StackPanel>
怎么会?
如果您想知道为什么我不制作一条更长的单行:这是一个演示该行为的最小示例。