我正在尝试使两个按钮在Visual Studio的“相对面板”布局中与UWP应用程序共享相同的宽度,但似乎找不到资源或任何东西向我展示如何做到这一点.
任何人都可以帮忙或者给我一些资源去吗?请不要在没有建议的情况下将此问题降级.
解决方法:
这是RelativePanel的解决方案,尽管@ al1Dima提出的Grid解决方案也有效
<RelativePanel>
<Button x:Name="LeftButton" Content="Left" HorizontalAlignment="Stretch"
RelativePanel.AlignLeftWithPanel="True" RelativePanel.LeftOf="Divider" />
<Border x:Name="Divider" RelativePanel.AlignHorizontalCenterWithPanel="True"/>
<Button x:Name="RightButton" Content="Right" HorizontalAlignment="Stretch"
RelativePanel.AlignRightWithPanel="True" RelativePanel.RightOf="Divider" />
</RelativePanel>