我有一个 UserControl,它只在 DataTemplate 中包含一个 TextBlock 和 TextBox。这是通过以下方式完成的:
<UserControl.Resources>
<DataTemplate DataType="{x:Type Binding:StringBindingData}" x:Key="dataTemp">
<StackPanel Orientation="Horizontal" Name="sPanel">
<TextBlock Name="txtDescription" Text="{Binding Description}" />
<TextBox Name="textboxValue" Text="{Binding Mode=TwoWay, Path=Value, UpdateSourceTrigger=PropertyChanged}" />
</StackPanel>
</DataTemplate>
</UserControl.Resources>
<Grid>
<ItemsControl Name="textItemsControl" ItemsSource="{Binding}"/>
</Grid>
我需要能够在不同的情况下对 TextBlock/TextBox 应用不同的样式。例如,在某些情况下,我希望能够将白色前景应用到 TextBlock 或更改 TextBox 的宽度。
我尝试了几种不同的方法: 在使用控件的窗口中,我设置了 TextBlock 的样式:
<Style TargetType="{x:Type TextBlock}" >
<Setter Property="Foreground" Value="White" />
</Style>
这适用于窗口中的所有其他 TextBlock。
我还尝试使用在代码隐藏中获取 DataTemplate
var myDataTemplate = (DataTemplate)this.Resources["dataTemp"];
但是无法进一步将样式应用于所有 TextBlock 元素。