2011-01-13 82 views

回答

4

這是我做過什麼來得到它的工作。謝謝,SeeSharp,提示。

3

使用ItemTemplate爲標籤頁眉設置模板。 例子:

<TabControl ItemsSource="{Binding Items}"> 
      <TabControl.ItemTemplate> 
       <DataTemplate> 
        <TextBlock FontWeight="UltraBold" Text="{Binding Caption}"/> 
       </DataTemplate> 
      </TabControl.ItemTemplate> 
相關問題