如何在 C++/CLI 中将 ListView 绑定到 ObservableCollection?

发布于 2024-09-08 18:46:50 字数 546 浏览 6 评论 0原文

我有一个小应用程序,它允许用户选择多个文件,然后执行一些处理。我想我应该将文件收集在 String^ObservableCollection 中(并且可能在以后将其扩展为完整的类)。

问题是我无法弄清楚如何将 ListView 绑定到 ObservableCollection。我已向主窗体添加了一个属性:

protected:
    ObservableCollection<String^>^ m_sourceFiles;

public:
    property ObservableCollection<String^>^ SourceFileList
    {
        ObservableCollection<String^>^ get() {return m_sourceFiles;}
    }

我见过的 C# / VB 实现的所有示例此时都切换为使用 XAML,但我不知道如何在 C++ 中执行此操作?我该去哪里?

I've got a small app which will allow the user to select a number of files and then perform some processing. I was thinking I'd collect the files in an ObservableCollection of String^ (and probably expand this to a full class at a later date).

The problem is I can't work out how to bind the ListView to the ObservableCollection. I've added a property to the main form:

protected:
    ObservableCollection<String^>^ m_sourceFiles;

public:
    property ObservableCollection<String^>^ SourceFileList
    {
        ObservableCollection<String^>^ get() {return m_sourceFiles;}
    }

All the examples I've seen for C# / VB implementations switch to using XAML at this point, but I can't see how to do that in C++? Where do I go from here?

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

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

发布评论

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

评论(1

哆兒滾 2024-09-15 18:46:50

DataGridViewListBoxComboBox 上有一个 DataSource 属性。你能使用其中之一吗? System.Windows.Forms.ListView 不支持数据绑定。但是,您可以使用虚拟模式并处理 RetrieveVirtualItem 事件。

There's a DataSource property on DataGridView, ListBox, and ComboBox. Can you use one of those? System.Windows.Forms.ListView doesn't have support for data-binding. However, you can use virtual mode and handle the RetrieveVirtualItem event.

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