0
我無法將樣式應用於自定義用戶控件。 樣式爲TextBlock和MyControl位於同一字典中。 風格爲TextBlock使用沒有問題。 但對於MyControl樣式未應用。 爲什麼?我無法將樣式應用於自定義用戶控件
// XAML xmlns:local="clr-namespace:MyControlNameSpace" <Grid> <TextBlock x:Name="text" Style="{DynamicResource TextStyle}"/> <local:MyControl x:Name="control" Style="{DynamicResource ControlStyle}"/> </Grid> // RESOURCE DICTIONARY <Style x:Key="ControlStyle" TargetType="{x:Type local:MyControl}"> <Setter Property="Height" Value="Auto"/> <Setter Property="Width" Value="Auto"/> <Setter Property="Foreground" Value="White"/> <Setter Property="ColorMain" Value="Black"/> <Setter Property="Margin" Value="2"/> </Style> <Style x:Key="TextStyle" TargetType="{x:Type TextBlock}"> .... <Setter Property="FontSize" Value="32"/> ... </Style>
//PART of CS
public partial class MyControl: UserControl { .... }
這一部分看起來不錯,張貼MyControl的XAML。 –
你肯定使用MyControl的具體實例?不是它的子類? – GazTheDestroyer
除非您打算在運行時對'Style'進行更改,否則應該使用'StaticResource'而不是'DynamicResource'](http://stackoverflow.com/questions/200839/whats-the-difference-間的StaticResource和 - dynamicresource合WPF)。 – Sheridan