UserControl を ContentControl に挿入することは可能ですか?
ただし、挿入する必要がある UserControl を動的に決定する必要があります (DataTemplateSelector の場合と同様)。
可能です。ContentControl
次のように言う必要があります。
<ContentControl Name="ContentMain" Width="Auto" Opacity="1" Background="Transparent" ></ContentControl>
そして、UserControl
次の 2 つのような別のものを用意する必要があります。
<UserControl x:Class="MyNamespace.UserControl1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" >
<Grid Margin="5,5,5,10" >
<Label Name="labelContentOne" VerticalAlignment="Top" FontStretch="Expanded" />
</Grid>
<UserControl x:Class="MyNamespace.UserControl2"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" >
<Grid Margin="5,5,5,10" >
<Label Name="labelContentTwo" VerticalAlignment="Top" FontStretch="Expanded" />
</Grid>
それらを動的に変更したい場合は、ContentMain
ContentControl のコンテンツをプログラムで変更するだけで済みます。
// Initialize the content
UserControl1 u1 = new UserControl1();
ContentMain.Content = u1;
// Let's say it changes on a button click (for example)
private void ButtonChangeContent_Click(object sender, RoutedEventArgs e)
{
UserControl2 u2 = new UserControl2();
ContentMain.Content = u2;
}
多かれ少なかれそれがアイデアです... ;)
はい、任意のオブジェクトを に配置できますが、必要ContentControl.Content
な UserControl を決定するものに応じて、これを実現する方法は複数あります。
私の個人的なお気に入りは、ある条件に基づいてDataTrigger
を決定するを使用することです。ContentControl.ContentTemplate
ContentControl.Content
ComboBox の選択された値に基づく例を次に示します。
<DataTemplate DataType="{x:Type DefaultTemplate}">
<TextBlock Text="Nothing Selected" />
</DataTemplate>
<DataTemplate DataType="{x:Type TemplateA}">
<localControls:UserControlA />
</DataTemplate>
<DataTemplate DataType="{x:Type TemplateB}">
<localControls:UserControlB />
</DataTemplate>
<Style TargetType="{x:Type ContentControl}" x:Key="MyContentControlStyle">
<Setter Property="ContentTemplate" Value="{StaticResource DefaultTemplate}" />
<Style.Triggers>
<DataTrigger Binding="{Binding ElementName=MyComboBox, Path=SelectedValue}" Value="A">
<Setter Property="ContentTemplate" Value="{StaticResource TemplateA}" />
</DataTrigger>
<DataTrigger Binding="{Binding ElementName=MyComboBox, Path=SelectedValue}" Value="B">
<Setter Property="ContentTemplate" Value="{StaticResource TemplateB}" />
</DataTrigger>
</Style.Triggers>
</Style>