作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要将数据库中的表设置为 WPF 中 GridGrid 的数据源。在 Windows 窗体中,该属性称为 DataSource
。但是在 WPF 中不存在这样的属性,那么我该怎么做呢?
最佳答案
您可以使用 ItemsSource
属性(property) :
<ListView ItemsSource="{Binding YourData}">
<ListView.View>
<GridView>
<!-- The columns here -->
</GridView>
</ListView.View>
</ListView>
ListView
命名即可。并设置
ItemsSource
代码中的属性:
listView1.ItemsSource = YourData;
ItemsSource
属性与其他列表控件(
DataGrid
、
ListBox
、
ComboBox
等),因为它是在
ItemsControl
中定义的基类。
DataTable
, 不能直接赋值给
ItemsSource
因为它没有实现
IEnumerable
,但您可以通过绑定(bind)来实现:
listView1.SetBinding(ItemsControl.ItemsSourceProperty, new Binding { Source = YourData });
关于c# - 如何在 WPF 中设置 DataGrid 的 DataSource?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5398441/
我是一名优秀的程序员,十分优秀!