5

我有一个通过 CollectionViewSource 填充的组合框。这些项目是通过传入项目类型(在本例中为 ProjectViewModel)的数据模板构建的。这是 .NET 4.0 中的 WPF。

在我的 window.resources 中,我指定了以下内容:

    <Style TargetType="{x:Type ComboBoxItem}">
        <Setter Property="HorizontalContentAlignment" Value="Stretch"/>
        <Setter Property="VerticalContentAlignment" Value="Center"/>
    </Style>

尽管有这种风格,我仍然收到以下错误:

System.Windows.Data 错误:4:找不到与引用“RelativeSource FindAncestor,AncestorType='System.Windows.Controls.ItemsControl',AncestorLevel='1''的绑定源。BindingExpression:Path=Horizo​​ntalContentAlignment; 数据项=空;目标元素是'ComboBoxItem'(名称='');目标属性是“Horizo​​ntalContentAlignment”(类型“Horizo​​ntalAlignment”)

System.Windows.Data 错误:4:找不到与引用“RelativeSource FindAncestor,AncestorType='System.Windows.Controls.ItemsControl',AncestorLevel='1''的绑定源。绑定表达式:路径=垂直内容对齐;数据项=空;目标元素是'ComboBoxItem'(名称='');目标属性是“VerticalContentAlignment”(类型“VerticalAlignment”)

我也在 ComboBox 元素上指定了 Horizo​​ntal 和 Vertical ContentAlignment,但无济于事。这不是一个可怕的问题,因为项目正确显示。但是在调试时,我在关闭窗口时确实得到了大约 10 秒的延迟,同时它向输出窗口输出了大约 4000 条错误消息(我需要打开它才能捕获合法的绑定错误。

我可能没有正确阅读错误。为什么找不到绑定的有效来源?据我所知,我使用 ComboBox 和 CollectionViewSource 的方式符合他们的意图。

4

4 回答 4

5

我以为我已经在自己的程序中解决了这个问题,但发现它一直间歇性地弹出。终于找到了问题的根源。

如果您使用由 支持的组合框ICollectionView,并且您在事件队列上堆叠两个或更多collectionView.Refresh()调用(例如:由于两个不同的清理操作而调用 refresh 两次),这将导致它生成绑定错误垃圾邮件每个额外Refresh()调用的组合框的每个元素。此绑定错误只会在您至少打开一次组合框后发生。

重写它以便您只Refresh()为给定事件调用一次将防止弹出绑定错误。

于 2015-12-03T20:02:38.967 回答
3

我只想提一下我在这个问题上挣扎了两天。最常见的建议解决方案(将 Horizo​​ntal/VerticalContentAlignment 样式添加到您的元素,甚至添加到 App.xaml)并不总能解决问题。

最终,我发现了一些对我自己的情况独特的东西——我希望它可以对某人有所帮助:如果你正在使用 FilterEventHandler,在重新订阅之前不要取消订阅!

每当我更改通道过滤器(调用 UpdateCorporatesList)时,我的旧代码都会继续生成“数据错误 4”消息:

// This code generates errors
private void UpdateCorporatesList()
{
    this.CorporatesViewSource.Filter -= new FilterEventHandler(ApplyCorporateFilter);

    if (this.ChannelFilter != null)
    {
        this.CorporatesViewSource.Filter += new FilterEventHandler(ApplyCorporateFilter);
    }
    else
    {
        this.CorporateFilter = null;
    }
}

private void ApplyCorporateFilter(object sender, FilterEventArgs e)
{
    SalesCorporate customer = e.Item as SalesCorporate;
    var currentChannel = this.Channels.FirstOrDefault(x => x.ID == this.ChannelFilter).Description;
    if ((customer.ID != null) && (customer.Channel != currentChannel))
    {
        e.Accepted = false;
    }
}

...所以我将其更改为每次都重新订阅 FilterEventHandler,而是在事件处理方法中对 Channel Filter 进行 null 检查。

// This code works as intended
private void UpdateCorporatesList()
{
    this.CorporatesViewSource.Filter += new FilterEventHandler(ApplyCorporateFilter);

    if (this.ChannelFilter == null)
    {
        this.CorporateFilter = null;
    }
}

private void ApplyCorporateFilter(object sender, FilterEventArgs e)
{
    var currentChannel = this.Channels.FirstOrDefault(x => x.ID == this.ChannelFilter);
    if (currentChannel.ID == null)
    {
        return;
    }

    SalesCorporate customer = e.Item as SalesCorporate;
    if ((customer.ID != null) && (customer.Channel != currentChannel.Description))
    {
        e.Accepted = false;
    }
}

瞧!没有更多错误:-)

于 2013-10-22T08:30:01.860 回答
1

为这个错误苦苦挣扎了几个小时,尝试了谷歌的所有解决方案,只有这个有效,从你的组合框样式中删除 OverridesDefaultStyle 属性行:

// before
<Style x:Key="{x:Type ComboBoxItem}" TargetType="{x:Type ComboBoxItem}">
    <Setter Property="SnapsToDevicePixels" Value="true" />
    <Setter Property="OverridesDefaultStyle" Value="true" />

// after
<Style x:Key="{x:Type ComboBoxItem}" TargetType="{x:Type ComboBoxItem}">
    <Setter Property="SnapsToDevicePixels" Value="true" />

在数据网格单元格中使用组合框样式模板 https://docs.microsoft.com/en-us/dotnet/desktop/wpf/controls/combobox-styles-and-templates?view=netframeworkdesktop-4.8

于 2021-05-25T20:41:12.583 回答
0

我不知道您是否还需要这方面的帮助,但我只是想出了一种方法让这个错误/警告消失。在我的组合框中,我重新定义了 ItemTemplate 属性,如下所示:

<ComboBox.ItemTemplate>
    <ItemContainerTemplate>
        <TextBlock Text="{Binding Path=YourBinding}"/>
    </ItemContainerTemplate>
</ComboBox.ItemTemplate>

YourBinding 是您将用作组合框的“DisplayMemberPath”的值

于 2014-01-14T10:33:43.270 回答