在WPF窗口中从Excel获取数据的代码
你好 我想开发 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最简单的方法可能是从 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/.