我有以下的ResourceDictionary:如何共享WPF風格二傳手
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Style x:Key="StyleComboBox" TargetType="{x:Type ComboBox}">
<Setter Property="BorderBrush" Value="DarkGray" />
<Setter Property="BorderThickness" Value="1" />
<!-- Styles for ComboBox -->
</Style>
<Style x:Key="StyleTextBox" TargetType="{x:Type TextBox}">
<Setter Property="BorderBrush" Value="DarkGray" />
<Setter Property="BorderThickness" Value="1" />
<!-- Styles for Textbox -->
</Style>
</ResourceDictionary>
怎麼可能只在一個位置二傳手使用?
該OP有兩個不同的'TargetType' – 2012-07-13 06:43:46
這是一個怎麼樣的問題?只需將基礎樣式的目標類型設置爲控件。 – Rafal 2012-07-13 06:59:23
@Rafal如何分享更多不同的setters? – David 2012-07-13 07:05:44