WPF中的ControlTemplate
和DataTemplate
之间有什么区别?
答案 0 :(得分:253)
通常,控件是为了它自己而呈现的,并不反映底层数据。例如,Button
不会绑定到业务对象 - 它纯粹是因为它可以被点击。但是,ContentControl
或ListBox
通常会显示为可以为用户显示数据。
因此,DataTemplate
用于为底层数据提供可视化结构,而ControlTemplate
与底层数据无关,只是为控件本身提供可视化布局。
ControlTemplate
通常只包含TemplateBinding
个表达式,绑定回控件本身的属性,而DataTemplate
将包含标准的Binding表达式,绑定到其{的属性{1}}(业务/域对象或视图模型)。
答案 1 :(得分:104)
基本上ControlTemplate
描述了在DataTemplate
描述如何显示数据时如何显示控件。
例如:
Label
是一个控件,其中包含一个ControlTemplate
,其中Label
应使用Border
围绕某些内容(DataTemplate
或另一个控制)。
Customer
类是数据,将使用DataTemplate
显示,可以说将Customer
类型显示为StackPanel
,其中包含两个TextBlocks
一个显示姓名,另一个显示电话号码。注意所有类都使用DataTemplates
显示可能会有所帮助,您通常只使用默认模板TextBlock
,其中Text
属性设置为Object {的结果{ {1}}方法。
答案 2 :(得分:31)
<Window x:Class="WpfApplication7.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="MainWindow" Height="350" Width="525"> <Window.Resources> <DataTemplate x:Key="ButtonContentTemplate"> <StackPanel Orientation="Horizontal"> <Grid Height="8" Width="8"> <Path HorizontalAlignment="Stretch" Margin="0,0,1.8,1.8" VerticalAlignment="Stretch" Stretch="Fill" Stroke="#FF000000" Data="M0.5,5.7 L0.5,0.5 L5.7,0.5"/> <Path HorizontalAlignment="Stretch" Margin="2,3,0,0" VerticalAlignment="Stretch" Stretch="Fill" Stroke="#FFFFFFFF" Data="M3.2,7.5 L7.5,7.5 L7.5,3.5"/> <Path HorizontalAlignment="Stretch" Margin="1.2,1.4,0.7,0.7" VerticalAlignment="Stretch" Fill="#FFFFFFFF" Stretch="Fill" Stroke="#FF000000" Data="M2.5,2.5 L7.5,7.5"/> <Path HorizontalAlignment="Stretch" Margin="1.7,2.0,1,1" VerticalAlignment="Stretch" Stretch="Fill" Stroke="#FF000000" Data="M3,7.5 L7.5,7.5 L7.5,3.5"/> <Path HorizontalAlignment="Stretch" Margin="1,1,1,1" VerticalAlignment="Stretch" Stretch="Fill" Stroke="#FFFFFFFF" Data="M1.5,6.5 L1.5,1 L6.5,1.5"/> </Grid> <ContentPresenter Content="{Binding}"/> </StackPanel> </DataTemplate> <ControlTemplate TargetType="Button" x:Key="ButtonControlTemplate"> <Grid> <Ellipse Fill="{TemplateBinding Background}"/> <ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center"/> </Grid> </ControlTemplate> </Window.Resources> <StackPanel> <Button Template="{StaticResource ButtonControlTemplate}" ContentTemplate="{StaticResource ButtonContentTemplate}" Content="1"/> <Button Template="{StaticResource ButtonControlTemplate}" ContentTemplate="{StaticResource ButtonContentTemplate}" Content="2"/> <Button Template="{StaticResource ButtonControlTemplate}" ContentTemplate="{StaticResource ButtonContentTemplate}" Content="3"/> </StackPanel> </Window>
(模板被偷走了 http://msdn.microsoft.com/en-us/library/system.windows.controls.controltemplate.aspx 和 http://msdn.microsoft.com/en-us/library/system.windows.controls.contentcontrol.contenttemplate%28VS.95%29.aspx 分别地)
无论如何,ControlTemplate决定了Button本身的外观 ContentTemplate决定按钮内容的外观。所以 您可以将内容绑定到您的某个数据类并拥有它 无论如何你都想要它。
答案 3 :(得分:18)
ControlTemplate
:表示控件样式。
DataTemplate
:表示数据样式(您希望如何显示数据)。
所有控件都使用您可以通过模板属性覆盖的默认控件模板。
例如
Button
模板是一个控件模板。
Button
内容模板是一种数据模板
<Button VerticalAlignment="Top" >
<Button.Template>
<ControlTemplate >
<Grid>
<Rectangle Fill="Blue" RadiusX="20" RadiusY="20"/>
<Ellipse Fill="Red" />
<ContentPresenter Content="{Binding}">
<ContentPresenter.ContentTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal" Height="50">
<TextBlock Text="Name" Margin="5"/>
<TextBox Text="{Binding UserName, Mode=TwoWay}" Margin="5" Width="100"/>
<Button Content="Show Name" Click="OnClickShowName" />
</StackPanel>
</DataTemplate>
</ContentPresenter.ContentTemplate>
</ContentPresenter>
</Grid>
</ControlTemplate>
</Button.Template>
</Button>
public String UserName
{
get { return userName; }
set
{
userName = value;
this.NotifyPropertyChanged("UserName");
}
}
答案 4 :(得分:6)
ControlTemplate
- 更改元素的外观。例如,Button
可以包含图片和文字
DataTemplate
- 使用元素表示基础数据。
答案 5 :(得分:1)
ControlTemplate
定义视觉外观,DataTemplate
替换数据项的视觉外观。
示例:我想显示一个从矩形到圆形的按钮=&gt;控制模板。
如果您拥有控件的复杂对象,它只需调用并显示ToString()
,DataTemplate
可以获得各种成员并显示和更改数据对象的值。
答案 6 :(得分:0)
以上所有答案都很不错,但是有一个关键的区别被遗漏了。这有助于对何时使用什么做出更好的决策。它是ItemTemplate
属性:
DataTemplate用于提供ItemTemplate属性的元素,以便您使用先前根据绑定数据通过您提供的选择器定义的DataTemplate
替换其项的内容
但是如果您的控件没有为您提供这种奢侈,那么您仍然可以使用ContentView
来显示其来自预定义ControlTemplate
的内容。有趣的是,您可以在运行时更改ControlTemplate
的{{1}}属性。需要注意的另一件事是,与具有ContentView
属性的控件不同,此(ContentView)控件不能具有ItemTemplate
。但是,您仍然可以在运行时创建触发器来更改TemplateSelector
。