WPF新手,并且有标签,并且在每个标签中,内容都以弯曲的角落面板/窗口/ whateveryouwannacallit呈现。我不知道该怎么做(Style,ControlTemplate)但决定采用DataTemplate方式。
所以现在我有了这个DataTemplate:
<DataTemplate x:Key="TabContentPresenter" >
<Border Margin="10"
BorderBrush="{StaticResource DarkColorBrush}"
CornerRadius="8"
BorderThickness="2"
Grid.Row="0"
Padding="5"
Background="{TemplateBinding Background}">
<ContentPresenter Content="{Binding}" />
</Border>
</DataTemplate>
正如你可以看到的背景属性我不想在内容中设置背景颜色但不知道如何。我在这里使用它。
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="120"/>
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<ContentControl ContentTemplate="{StaticResource TabContentPresenter}" Background="White">
<!-- Something Here -->
</ContentControl>
<ContentControl ContentTemplate="{StaticResource TabContentPresenter}" Grid.Row="1" Background="Blue">
<!-- Something Here -->
</ContentControl>
</Grid>
在这里使用DataTemplate是错误还是有其他方法?
我可以直接在内容上设置背景,并从模板中的填充更改为内容中的边距,但在某些类似的情况下无法正常工作,只需设置一次就更好了。
编辑:
根据建议我改为ControlTemplate并将其置于样式中。这解决了背景问题,但创造了一个更大的问题。现在内容不会出现。我在博客here上看到,放置一个targetType可以解决这个问题,但它并没有解决我的问题。代码现在看起来像这样,并且还改变了ContentControl以使用样式而不是模板。
<Style x:Key="TabContentPresenter" TargetType="ContentControl" >
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="ContentControl">
<Border Margin="10"
BorderBrush="{StaticResource DarkColorBrush}"
CornerRadius="8"
BorderThickness="2"
Grid.Row="0"
Background="{TemplateBinding Background}">
<ContentPresenter Content="{Binding}" />
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
答案 0 :(得分:7)
使用ControlTemplate代替DataTemplate
<ControlTemplate x:Key="TabContentPresenter">
<Border Margin="10"
CornerRadius="8"
BorderThickness="2"
Grid.Row="0"
Padding="5"
Background="{TemplateBinding Background}">
<ContentPresenter Content="{Binding}"/>
</Border>
</ControlTemplate>
使用模板而不是ContentTemplate
<ContentControl Background="Green" Template="{StaticResource TabContentPresenter}"/>
答案 1 :(得分:5)
可能是因为TemplateBinding
无法与DataTemplate一起使用。 Check this question for details。
即使它有效,您只需要ControlTemplate而不是数据模板。