WPF ListBox 的 DataSource 相当于什么?
我正在尝试从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我使用过 ItemsSource 并且它有效。
i've used ItemsSource and it works.
我能够做到这一点:
I was able to do this: