WPFコントロール:ContentControl(コンテンツ表示)

コンピュータ

ContentControl は 任意の1つのコンテンツを表示するためのコントロールです。
中に TextBlock、Button、Grid など どんなUI要素でも入れられるのが特徴です。
UIの入れ替えに使われることが多いコントロールです。


XAML

<ContentControl HorizontalAlignment="Center"
                VerticalAlignment="Center">
        <Border Background="LightBlue" Padding="10">
        <StackPanel>
                <TextBlock Text="ContentControl Sample"
                        FontSize="16"
                        Margin="0,0,0,5"/>
                <Button Content="Button inside ContentControl"/>
        </StackPanel>
        </Border>
</ContentControl>

実行例

コメント