是否可以在 ContentControl 中插入一些 UserControl?
但我需要动态决定我需要插入哪个 UserControl(比如使用 DataTemplateSelector)。
有可能的。你需要有一个ContentControl
让我们说这样的:
<ContentControl Name="ContentMain" Width="Auto" Opacity="1" Background="Transparent" ></ContentControl>
然后你需要有你的不同UserControl
,比如这两个:
<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>