StackPanel 未更新

发布于 2024-08-01 17:57:39 字数 1011 浏览 3 评论 0原文

我遇到一个问题,直接绑定的 ObservableCollection 在添加新项目时不更新 StackPanel。 任何初始项目都会正确显示。 仅稍后添加的项目无法显示。 XAML:

<ItemsControl x:Name="ImageTable" ItemsSource="{Binding Path=SystemObjectViewItems, Converter={StaticResource UIElementWrapper}}">
    <ItemsControl.ItemsPanel>
        <ItemsPanelTemplate>
            <StackPanel/>
        </ItemsPanelTemplate>
    </ItemsControl.ItemsPanel>

    <ItemsControl.ItemTemplate>
        <DataTemplate>
            <Grid>
                <ContentPresenter Content="{Binding Path=Value.View}"/>
            </Grid>
        </DataTemplate>
    </ItemsControl.ItemTemplate>

</ItemsControl>

我正在使用 Prism MVVM,因此我绑定到我的 ViewModel,它具有一个属性:

public ObservableCollection<SystemObjectViewPresentationModel> SystemObjectViewItems {get; set; }

基本转换器和绑定正在工作,这可以通过我的初始项目正确显示这一事实来证明。 只有在初始绑定后添加到集合中的项目才不会显示。 有任何想法吗? 谢谢, 瑞克

I am having an issue with a directly bound ObservableCollection not updating a StackPanel when new items are added. Any initial items show up correctly. Only items that are added later on fail to display.
XAML:

<ItemsControl x:Name="ImageTable" ItemsSource="{Binding Path=SystemObjectViewItems, Converter={StaticResource UIElementWrapper}}">
    <ItemsControl.ItemsPanel>
        <ItemsPanelTemplate>
            <StackPanel/>
        </ItemsPanelTemplate>
    </ItemsControl.ItemsPanel>

    <ItemsControl.ItemTemplate>
        <DataTemplate>
            <Grid>
                <ContentPresenter Content="{Binding Path=Value.View}"/>
            </Grid>
        </DataTemplate>
    </ItemsControl.ItemTemplate>

</ItemsControl>

I am using Prism MVVM so I am binding to my ViewModel which has a property:

public ObservableCollection<SystemObjectViewPresentationModel> SystemObjectViewItems {get; set; }

The basic converter and binding are working as can be demonstrated by the fact that my initial item displays correctly. It’s only items that are added to the collection after initial binding that do not show up.
Any ideas?
Thanks,
Rick

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

习ぎ惯性依靠 2024-08-08 17:57:39

我将大胆猜测并说这是您正在使用的 StaticResource。

如果您没有从中返回 ObservableCollection,并且没有绑定它来观察原始 ObservableCollection 的更改,那么它将不起作用。

您可以将代码发布到转换器吗?

I'm going to take a wild guess and say it's the StaticResource you're using.

If you're not returning an ObservableCollection from it and you're not binding it to watch the original ObservableCollection changes it won't work.

Can you post the code to the converter?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文