gpt4 book ai didi

c# - 如何在 ComboBox TemplateSelector 中强制更新 WPF 多重绑定(bind)?

转载 作者:行者123 更新时间:2023-11-30 16:46:22 25 4
gpt4 key购买 nike

作为序言,这个问题来自扩展 this answer关于如何使所选项目看起来不同于 ComboBox 中的下拉项目。

我正在尝试让我的自定义选定项使用 ComboBox 的 Tag 属性中的信息。因为我需要使用转换器,所以我使用了 mutli-converter为了能够将“我自己”发送到转换类。因此,我有这两个模板:

<DataTemplate x:Key="SelectedItemTemplate">
<StackPanel Orientation="Horizontal">
<TextBlock>
<TextBlock.Text>
<MultiBinding Converter="{StaticResource SelectedConverter}">
<Binding RelativeSource="{RelativeSource Self}" />
<Binding StringFormat="This is here so it's called every time" />
</MultiBinding>
</TextBlock.Text>
</TextBlock>
<TextBlock Text="{Binding}" />
</StackPanel>
</DataTemplate>

<DataTemplate x:Key="DropDownItemsTemplate">
<TextBlock Grid.Column="0" Text="{Binding}" Margin="0,0,10,0" VerticalAlignment="Center" />
</DataTemplate>

还有我的转换器:

class SelectedConverter : IMultiValueConverter
{
public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture)
{
var retVal = "";

// The value passed in should be the TextBox in the ComboBoxItem
var element = values[0] as DependencyObject;

// Try to find it's parent RoleComboBox
while (element != null && !(element is ComboBox))
{
element = VisualTreeHelper.GetParent(element);
}

// If we didn't find anything, return an empty string
if (element == null) return retVal;

// Otherwise, get the role from the ComboBox
var tag = (element as ComboBox).Tag;

if (tag?.ToString().Contains("Custom") ?? false)
{
retVal = "Custom Stuff ";
}

return retVal;
}

public object[] ConvertBack(object value, Type[] targetTypes, object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}
}

组合框的 XAML

<ComboBox Name="myComboBox" Grid.Column="0" Tag="My Custom Tag" ItemTemplateSelector="{StaticResource CbTemplateSelector}">
<ComboBox.Items>
<ComboBoxItem Content="A" />
<ComboBoxItem Content="B" />
<ComboBoxItem Content="C" />
<ComboBoxItem Content="D" />
<ComboBoxItem Content="E" />
</ComboBox.Items>
</ComboBox>

所有这一切都很好地产生了这个:

Screen Snip

现在,我需要做的是在更改 Tag 属性时将“Custom Stuff C”更改为其他内容。到目前为止,它只会在我更改所选项目时发生变化,但我需要在用户不必将其更改为 D,然后再更改为 C 的情况下进行更改。

从研究中,我尝试使用以下代码强制更新,但它不起作用。

myComboBox.GetBindingExpression(ComboBox.ItemTemplateProperty)?.UpdateTarget();
myComboBox.GetBindingExpression(ComboBox.ItemTemplateSelectorProperty)?.UpdateTarget();
myComboBox.GetBindingExpression(ComboBox.SelectionBoxItemTemplateProperty)?.UpdateTarget();
myComboBox.GetBindingExpression(ComboBox.TemplateProperty)?.UpdateTarget();
myComboBox.UpdateLayout();
myComboBox.OnSelectionChanged(new SelectionChangedEventArgs(SelectionChangedEvent, new List<bool> { }, new List<bool> { }));

请注意,我确实有一个继承自 ComboBox 的自定义控件,因此我确实可以访问 protected 方法(这就是上面最后一行代码的工作原理)。我只是提取了那部分,以便提供一小部分可重现的代码。

此时,我不确定还能尝试什么。那么,如何根据我的操作方式强制更新绑定(bind)呢?

最佳答案

无需绑定(bind)到自身然后在代码中搜索父组合框,只需使用内置方法即可:

<TextBlock.Text>
<MultiBinding Converter="{StaticResource SelectedConverter}">
<Binding RelativeSource="{RelativeSource FindAncestor, AncestorType={x:Type ComboBox}}" Path="Tag" />
<Binding StringFormat="This is here so it's called every time" />
</MultiBinding>
</TextBlock.Text>

作为奖励,如果您直接绑定(bind)到 ComboBox.Tag - 整个多重绑定(bind)将在该标签更改时刷新。

关于c# - 如何在 ComboBox TemplateSelector 中强制更新 WPF 多重绑定(bind)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40491184/

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