在WPF窗口中从Excel获取数据的代码

发布于 2024-09-26 11:59:58 字数 81 浏览 1 评论 0原文

你好 我想开发 C#.NET 基础 WPF 应用程序,在其中我想从同一项目中包含的 Excel 文件中获取数据,并在 WPF 窗口中操作这些数据。

hi
I want to develop C#.NET base WPF application ,in which I want to fetch data from excel file included in same project as well as manipulate through this data in WPF window.

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

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

发布评论

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

评论(1

反目相谮 2024-10-03 11:59:58

最简单的方法可能是从 Excel 本身将 excel 文件转换为 csv,并使用例如 http ://www.codeproject.com/KB/linq/LINQtoCSV.aspx。然后获取 WPF 工具包 http://wpf.codeplex.com/ 并使用其 DataGrid 和 AutoGenerateColumns="True " 并使用 LINQtoCSV 的输出设置 ItemsSource。

如果您不想转换为 CSV,则必须使用 Open XML SDK 2.0 或 http://www .smartxls.com/

The easiest way is probably to convert the excel file to csv from within excel itself and use for example http://www.codeproject.com/KB/linq/LINQtoCSV.aspx. Then get the WPF toolkit http://wpf.codeplex.com/ and use its DataGrid with AutoGenerateColumns="True" and set the ItemsSource with the output from LINQtoCSV.

If you don't want to convert to CSV you'll have to use something like Open XML SDK 2.0 or http://www.smartxls.com/.

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