gpt4 book ai didi

wpf - WPF 中 DataGridComboBoxColumn 的 ElementStyle 错误

转载 作者:行者123 更新时间:2023-12-03 14:05:22 26 4
gpt4 key购买 nike

我正在尝试更改 ElementStyle的 DataGrid ComboBox 列。据说 Style 的类型确实是 TextBlock当控件未被编辑时。因此,如其他示例所示,我尝试过:

<DataGridComboBoxColumn.ElementStyle>
<Style TargetType="TextBlock">
<Setter Property="Background" Value="Green" />
</Style>
</DataGridComboBoxColumn.ElementStyle>

当它嵌入到我的 DataGridComboBoxColumn 中时定义,我得到这个奇怪的错误信息:

'TextBlock' TargetType does not match type of element 'TextBlockComboBox'.


TextBlockComboBox 到底是什么? ?或者更重要的是,我怎样才能到达 ElementStyle ,因为定位到 ComboBox似乎没有做任何事情。

最佳答案

TextBlockComboBoxDataGridComboBoxColumn 的内部类型.我也不知道如何设置该类型的样式,但您可以欺骗 DataGridComboBoxColumn.ElementStyle通过使用 ComboBox看起来像 TextBlock 的样式:

<Style x:Key="TextBlockComboBoxStyle"
TargetType="{x:Type ComboBox}" BasedOn="{StaticResource {x:Type ComboBox}}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type ComboBox}">
<TextBlock Text="{TemplateBinding Text}"
Style="{StaticResource {x:Type TextBlock}}" />
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>

在上述风格中,我使用全局定义的 TextBlock在别处定义的样式并绑定(bind) Text ComboBox 的属性(property).最后,您可以像这样使用样式:
<DataGridComboBoxColumn ElementStyle="{StaticResource TextBlockComboBoxStyle}"
EditingElementStyle="{StaticResource {x:Type ComboBox}}" />
EditingElementStyle在这种情况下又是一个全局定义的 ComboBox其他地方定义的样式。

关于wpf - WPF 中 DataGridComboBoxColumn 的 ElementStyle 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18281455/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com