C# 和 XML 电子表格简单问题
大家好 我有 1675 行代码。想要当用户单击按钮 textbox.text 插入到此 xml 电子表格中,然后在桌面上创建。这可能吗?如何在当前 xml 电子表格行中插入文本?
例如:
` <Cell ss:StyleID="s38"/>
<Cell ss:StyleID="s39">
<Data ss:Type="String">ვაშლიჯვარი</Data>
</Cell>
<Cell ss:StyleID="s36"/>`
请帮助我,建议一些对我来说非常重要的事情,或者提供一些好的教程。
Hello guys
I have 1675 line Code. Want to when user click button textbox.text insert into this xml spreadsheet and then create on desktop. does it possible? How can I insert text in current xml spreadsheet row?
For example:
` <Cell ss:StyleID="s38"/>
<Cell ss:StyleID="s39">
<Data ss:Type="String">ვაშლიჯვარი</Data>
</Cell>
<Cell ss:StyleID="s36"/>`
Please help me, advice something its very important for me or give some good tutorials.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 LINQ to XML 打开 Excel XML 文件。您可以根据需要修改 XML DOM。您必须将 Excel 工作表中的单元格与 XML 元素关联起来。然后,您可以保存修改后的 XML DOM 以创建新的修改后的 Excel XML 文件。
下面是一个帮助您入门的小示例:
此代码假定使用以下简化的 XML:
You can open the Excel XML file using LINQ to XML. You can the modify the XML DOM as you require. You will have to correlate cells in the Excel worksheet with XML elements. You can then save the modified XML DOM to create a new and modified Excel XML file.
Here is a small example to get you going:
This code assumes the following simplified XML: