Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我想将 sql 查询的结果添加到我的 WPF 应用程序中的数据网格。我使用 SQL to LINQ 来获取数据。请帮助我。
只需使用 C# 将 DataGrid 的 ItemSource 属性设置为该查询的结果值:
dataGrid1.ItemSource = query ;
确保在 XAML 中将 AutoGenerateColumns 属性设置为 true
<DataGrid x:Name="dataGrid1" AutoGenerateColumns="True" />