我想知道在水平放置的StackPanel中是否可以有2个控件,以便将正确的项目停靠在StackPanel的右侧。
我尝试了以下操作,但没有成功:
<StackPanel Orientation="Horizontal">
<TextBlock>Left</TextBlock>
<Button Width="30" HorizontalAlignment="Right">Right<Button>
</StackPanel>
在上面的代码段中,我希望Button停靠在StackPanel的右侧。
注意:我需要使用StackPanel而不是Grid等来完成。