0
視覚的な状態を単純化するために、私が書いているUWPアプリケーションでRelativePanelを使用したいと思っています。xaml RelativePanelを使用して2列レイアウトを作成するにはどうすればよいですか?
これは私が
何をしたい私は、次のXAMLでこれを達成しようとしましたされています
<RelativePanel>
<TextBlock x:Name="Title" Height="50" Margin="15" FontSize="24"
RelativePanel.AlignTopWithPanel="True"
RelativePanel.AlignLeftWithPanel="True"
RelativePanel.AlignRightWithPanel="True">
</TextBlock>
<TextBox x:Name="Editor" Margin="15" Padding="20" HorizontalAlignment="Stretch"
RelativePanel.AlignLeftWithPanel="True"
RelativePanel.Below="Title"
RelativePanel.RightOf="FileList">
</TextBox>
<ListView x:Name="FileList" HorizontalAlignment="Stretch" Margin="15"
RelativePanel.AlignRightWithPanel="True"
RelativePanel.Below="Title">
</ListView>
</RelativePanel>
これは動作しません。 Editor
は伸びません。 Editor
をRelativePanel.AlignRightWith="FilesList"
に設定すると、過去のファイルリストが伸びて、ウィンドウがいっぱいになります。
RelativePanel
で私がしたいことをする方法はありますか?私は