WPF Template模版之DataTemplate與ControlTemplate的關係和應用【二】

1. DataTemplate和ControlTemplate的關係

    學習過DataTemplate和ControlTemplate,你應該已經體會到,控件只是數據的行爲和載體,是個抽象的概念,至於它自己長成什麼樣子(控件內部結構),它的數據會長成什麼樣子(數據顯示結構)都是靠Template生成的。決定控件外觀的是ControlTemplate,決定數據外觀的是DataTemplate,它們正是Control類的Template和ContentTemplate兩個屬性值html

    凡是Template,最終都要做用在控件上,這個控件就是Template的目標控件,也叫模板化控件。你可能會問:DataTemplate的目標應該是數據呀,怎麼會是控件呢。DataTemplate給人的感受的確是施加在數據對象上,但施加在數據對象上生成的一組控件總得有個載體吧?這個載體通常落實在一個叫作ContentPresenter對象上。ContentPresenter類只有ContentTemplate屬性、沒有Template屬性,這就證實了承載由DataTemplate生成的一組控件是他的專門用途。ide

    至此咱們能夠看出,由ControlTemplate生成的控件樹其樹根就是ControlTemplate的目標控件,此模板化控件的Template屬性值就是一個ControlTemplate實例。與之相仿,由DataTemplate生成的控件其樹根是一個ContentPresenter控件,此模板化控件的ContentTemplate屬性值就是這個DataTemplate實例。由於ContentPresenter控件是ControlTemplate控件樹上的一個節點,因此DataTemplate控件樹是ControlTemplate裏面的一個子樹。學習

    顯然,若是把數據對象賦值給ContentPresenter的DataContext屬性,由DataTemplate生成的控件天然會找到這個數據對象並把它看成本身的數據源。spa

2. 應用


2.1 應用1.net

    

    爲Template設置其應用目標有兩種方法,一個是逐個設置控件的Template/ContentTemplate/ItemTemlate/CellTemplate等屬性,不想應用Template的控件不設置;另外一種是總體應用,即把Template應用到某個類型的控件或者數據上。
把ControlTemplate應用到全部控件上須要藉助Style來實現,但Style不能標記X:KEY,例以下面的代碼:xml

 

[html]  view plain  copy
 
 print?
  1. <Window x:Class="WpfApplication11.wnd11421"  
  2.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"  
  3.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"  
  4.         Title="wnd11421" Height="200" Width="300">  
  5.     <Window.Resources>  
  6.         <!--ControlTemplate做用在全部目標控件上,Style不能標記x:key-->  
  7.         <Style TargetType="{x:Type TextBox}">  
  8.             <Setter Property="Template">  
  9.                 <Setter.Value>  
  10.                     <!--使用TemplateBinding,與模版目標一致-->  
  11.                     <ControlTemplate TargetType="{x:Type TextBox}">  
  12.                         <Border SnapsToDevicePixels="True"  
  13.                                 Background="{TemplateBinding Background}"  
  14.                                 BorderBrush="{TemplateBinding BorderBrush}"  
  15.                                 BorderThickness="{TemplateBinding BorderThickness}"  
  16.                                 CornerRadius="5">  
  17.                             <ScrollViewer SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}"></ScrollViewer>  
  18.                         </Border>  
  19.                     </ControlTemplate>  
  20.                 </Setter.Value>  
  21.             </Setter>  
  22.             <Setter Property="Margin" Value="5"></Setter>  
  23.             <Setter Property="BorderBrush" Value="Black"></Setter>  
  24.             <Setter Property="Height" Value="28"></Setter>  
  25.         </Style>  
  26.     </Window.Resources>  
  27.     <StackPanel>  
  28.         <TextBox></TextBox>  
  29.         <TextBox></TextBox>  
  30.         <TextBox Style="{x:Null}"></TextBox>  
  31.     </StackPanel>  
  32. </Window>  
    Style沒有X:key標記,默認爲引用到全部的x:type指定的控件上,若是不想應用則將style標記爲{x:null}。運行效果以下圖:

 

 

2.2 應用2htm

 

    把DataTemplate應用到某個數據類型上是設置DataTemplate的DataType屬性,而且DataTemplate做爲資源時也不能帶x:key標記, 例以下面的代碼:對象

 

[html]  view plain  copy
 
 print?
  1. <Window x:Class="WpfApplication11.wnd11422"  
  2.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"  
  3.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"  
  4.         xmlns:local="clr-namespace:WpfApplication11"  
  5.         Title="wnd11422" Height="200" Width="300">  
  6.     <Window.Resources>  
  7.         <!--DataTemplate做用在某個數據類型上,使用DataType,不能設置x:key-->  
  8.         <DataTemplate DataType="{x:Type local:Unit}">  
  9.             <Grid>  
  10.                 <StackPanel Orientation="Horizontal">  
  11.                     <Grid>  
  12.                         <Rectangle Fill="Red" Width="{Binding Price}" Stroke="Yellow"></Rectangle>  
  13.                         <TextBlock Text="{Binding Year}"/>  
  14.                     </Grid>  
  15.                     <TextBlock Text="{Binding Price}"></TextBlock>  
  16.                 </StackPanel>  
  17.             </Grid>  
  18.         </DataTemplate>  
  19.     </Window.Resources>  
  20.     <StackPanel>  
  21.         <ListBox x:Name="_listBox"></ListBox>  
  22.         <ComboBox x:Name="_comBox"></ComboBox>  
  23.     </StackPanel>  
  24. </Window>  

 

代碼中的DataTemplate的目標數據類型和ListBox的條目類型都是Unit:blog

 

[csharp]  view plain  copy
 
 print?
  1. /// <summary>  
  2. /// DataType  
  3. /// </summary>  
  4. public class Unit  
  5. {  
  6.     public int Price { get; set; }  
  7.     public string Year { get; set; }  
  8. }  
指定數據源:

 

 

[csharp]  view plain  copy
 
 print?
  1. public partial class wnd11422 : Window  
  2. {  
  3.     public wnd11422()  
  4.     {  
  5.         InitializeComponent();  
  6.   
  7.         List<Unit> _listUnit = new List<Unit>()  
  8.         {  
  9.             new Unit(){Price=100, Year="2001" },  
  10.             new Unit(){Price=120, Year="2002" },  
  11.             new Unit(){Price=140, Year="2003" },  
  12.             new Unit(){Price=180, Year="2004" },  
  13.             new Unit(){Price=150, Year="2005" },  
  14.             new Unit(){Price=200, Year="2006" },  
  15.         };  
  16.   
  17.         _listBox.ItemsSource = _listUnit;  
  18.         _comBox.ItemsSource = _listUnit;  
  19.     }  
  20. }  
此時DataTemplate會自動加載到全部的Unit類型對象上,儘管我沒有爲ListBox和CompBox指定ItemTemplate,同樣會獲得下圖的效果:

 



2.3 應用3事件

 

    不少時候數據是以XML形式存取的,若是把XML節點先轉換爲CLR數據類型再應用DataTemplate就麻煩了。DataTemplate很智能,具備直接把XML數據節點看成目標對象的功能-----XML數據中的元素名(標籤名)能夠做爲DataType,元素的子節點和Attribute可使用XPath來訪問。下面的代碼使用XmlDataProvider做爲數據源(其XPath指出的必須是一組節點),請注意細節之處的變化,結果和應用2的效果相同:

 

[html]  view plain  copy
 
 print?
  1. <Window x:Class="WpfApplication11.wnd11423"  
  2.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"  
  3.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"  
  4.         Title="wnd11423" Height="200" Width="300">  
  5.     <Window.Resources>  
  6.         <!--Xml中的元素名能夠做爲DataType-->  
  7.         <DataTemplate DataType="XUnit">  
  8.             <Grid>  
  9.                 <StackPanel Orientation="Horizontal">  
  10.                     <Grid>  
  11.                         <Rectangle Fill="Red" Width="{Binding XPath=@Price}" Stroke="Yellow"></Rectangle>  
  12.                         <TextBlock Text="{Binding XPath=@Year}"/>  
  13.                     </Grid>  
  14.                     <TextBlock Text="{Binding XPath=@Price}"></TextBlock>  
  15.                 </StackPanel>  
  16.             </Grid>  
  17.         </DataTemplate>  
  18.         <!--XPath指定一組節點-->  
  19.         <XmlDataProvider x:Key="ds" XPath="XUnits/XUnit">  
  20.             <x:XData>  
  21.                 <XUnits xmlns="">  
  22.                     <XUnit Price="100" Year="2001"></XUnit>  
  23.                     <XUnit Price="120" Year="2002"></XUnit>  
  24.                     <XUnit Price="140" Year="2003"></XUnit>  
  25.                     <XUnit Price="180" Year="2004"></XUnit>  
  26.                     <XUnit Price="150" Year="2005"></XUnit>  
  27.                     <XUnit Price="200" Year="2006"></XUnit>  
  28.                 </XUnits>  
  29.             </x:XData>  
  30.         </XmlDataProvider>  
  31.     </Window.Resources>  
  32.     <StackPanel>  
  33.         <!--XmlDataProvider使用Binding-->  
  34.         <ListBox x:Name="_listBox" ItemsSource="{Binding Source={StaticResource ds}}"></ListBox>  
  35.         <ComboBox x:Name="_comBox" ItemsSource="{Binding Source={StaticResource ds}}"></ComboBox>  
  36.     </StackPanel>  
  37. </Window>  

 

 

2.4 應用4

 

    XML的優點就是能夠方便的表示帶有層級的數據,好比:年級----班級----小組 或  主菜單---次菜單----三級菜單。同時WPF準備了TreeView和MenuItem控件來顯示層級數據。可以幫助層級控件顯示層級數據的模板是HierachicalDataTemplate。下面是實際工做中常見的例子:

    值得一提的是,HierarchicalDataTemplate的做用不是MenuItem的內容而是它的Header。若是對MenuItem的單擊事件進行偵聽處理,咱們就能夠從被單擊的MenuItem的Header中取出XML數據。

 

[html]  view plain  copy
 
 print?
  1. <Window x:Class="WpfApplication11.wnd11424"  
  2.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"  
  3.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"  
  4.         Title="wnd11424" Height="400" Width="300">  
  5.     <Window.Resources>  
  6.         <!--年級模版-->  
  7.         <HierarchicalDataTemplate DataType="Grade" ItemsSource="{Binding XPath=Class}">  
  8.             <TextBlock Text="{Binding XPath=@Name}"></TextBlock>  
  9.         </HierarchicalDataTemplate>  
  10.         <!--班級模版-->  
  11.         <HierarchicalDataTemplate DataType="Class" ItemsSource="{Binding XPath=Group}">  
  12.             <RadioButton Content="{Binding XPath=@Name}"></RadioButton>  
  13.         </HierarchicalDataTemplate>  
  14.         <!--分組模版-->  
  15.         <HierarchicalDataTemplate DataType="Group">  
  16.             <CheckBox Content="{Binding XPath=@Name}"></CheckBox>  
  17.         </HierarchicalDataTemplate>  
  18.   
  19.         <!--數據模版-->  
  20.         <XmlDataProvider x:Key="ds" XPath="Data/Grade">  
  21.             <x:XData>  
  22.                 <Data xmlns="">  
  23.                     <Grade Name="一年級">  
  24.                         <Class Name="甲班">  
  25.                             <Group Name="A組"></Group>  
  26.                             <Group Name="B組"></Group>  
  27.                             <Group Name="C組"></Group>  
  28.                         </Class>  
  29.                         <Class Name="乙班">  
  30.                             <Group Name="A組"></Group>  
  31.                             <Group Name="B組"></Group>  
  32.                             <Group Name="C組"></Group>  
  33.                         </Class>  
  34.                     </Grade>  
  35.                     <Grade Name="二年級">  
  36.                         <Class Name="丙班">  
  37.                             <Group Name="A組"></Group>  
  38.                             <Group Name="B組"></Group>  
  39.                             <Group Name="C組"></Group>  
  40.                         </Class>  
  41.                         <Class Name="丁班">  
  42.                             <Group Name="A組"></Group>  
  43.                             <Group Name="B組"></Group>  
  44.                             <Group Name="C組"></Group>  
  45.                         </Class>  
  46.                     </Grade>  
  47.                 </Data>  
  48.             </x:XData>  
  49.         </XmlDataProvider>  
  50.     </Window.Resources>  
  51.     <!--監聽事件-->  
  52.     <StackPanel MenuItem.Click="StackPanel_Click">  
  53.         <Menu ItemsSource="{Binding Source={StaticResource ds}}"></Menu>  
  54.         <TreeView ItemsSource="{Binding Source={StaticResource ds}}" Margin="5"></TreeView>  
  55.     </StackPanel>  
  56. </Window>  
事件處理器:

 

 

[csharp]  view plain  copy
 
 print?
  1. private void StackPanel_Click(object sender, RoutedEventArgs e)  
  2. {  
  3.     // Head爲XmlElement  
  4.     XmlElement xmlElem = (e.OriginalSource as MenuItem).Header as XmlElement;  
  5.     MessageBox.Show(xmlElem.Attributes["Name"].Value);  
  6. }  
 
相關文章
相關標籤/搜索