WPF ListBox 的 DataSource 相当于什么?

发布于 2024-10-31 17:06:18 字数 342 浏览 0 评论 0原文

我正在尝试从 txt 文件设置列表框。我读取文件并填充列表,然后我想将其显示在列表框中,但我没有可用的数据源选项(只有 DataContext 和 DataContextChanged)。

我的列表框是在 XAML 中声明的:

    <ListBox Name="ScriptList"  
        Grid.Row="0"
        Grid.Column="1"
        TextBlock.FontSize="12"
        Margin="2" />

知道为什么吗?

另外,这是正确的继续方式吗(读取文件 - >

I'm trying to set a Listbox from a txt file. I read the file and populate a list, then I want to display it in the listbox, but I have no Datasource option available (only DataContext and DataContextChanged).

My Listbox is declared in XAML :

    <ListBox Name="ScriptList"  
        Grid.Row="0"
        Grid.Column="1"
        TextBlock.FontSize="12"
        Margin="2" />

Any idea why ?

Also, is it the right way to proceed (read file ->

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

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

发布评论

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

评论(2

温柔嚣张 2024-11-07 17:06:18

我使用过 ItemsSource 并且它有效。

i've used ItemsSource and it works.

无边思念无边月 2024-11-07 17:06:18

我能够做到这一点:

listbox.ItemSource = previous DataSource

listbox.DisplayMemberPath = previous ValueMember

I was able to do this:

listbox.ItemSource = previous DataSource

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