かずきのBlog@hatena

すきな言語は C# + XAML の組み合わせ。Azure Functions も好き。最近は Go 言語勉強中。日本マイクロソフトで働いていますが、ここに書いていることは個人的なメモなので会社の公式見解ではありません。

RelativePanelで横幅いっぱいにコントロールを配置する

はいっ

<RelativePanel>
    <Button x:Name="Button1"
            Content="Button"
            HorizontalAlignment="Stretch"
            RelativePanel.AlignLeftWithPanel="True"
            RelativePanel.AlignRightWithPanel="True" />
</RelativePanel>

f:id:okazuki:20150911213855p:plain