Xml创建值条目
我想这是一个非常基本的事情,但我似乎找不到解决方案:
如果我从 C# 中的 WPF 应用程序写入 xml 文档,我使用例如这一行来创建文本(字符串)。 XmlText xmlTextScore = xmlDoc.CreateTextNode("this is text");
但现在有这种情况:有这些值 0、6 和 12 如果我对列进行排序,6 将位于顶部,然后是 12,然后是 0。 所以看起来它只看第一个数字来排序。
现在我找不到的是,是否有一种方法可以将 int 或 double 之类的值写入 xml 文件,或者我是否应该以某种方式告诉表它正在排序的值?
这是现在发生的情况的一个例子:
编辑 1
我直接将 XML 读入数据字段。在我调用排序之前,是否有一种方法可以对特定列中的每个单元格使用某些内容作为解析?
I guess it a pretty basic thing, but i just cant seem to find a sloution for this:
if i write from my WPF application in c# to a xml doc, i use for example this line to create text (string).XmlText xmlTextScore = xmlDoc.CreateTextNode("this is text");
but now there is this case: there are these values 0, 6, and 12
sow if i sort the column, 6 will be on top, then 12, and then the 0.
So it seems it only looks at the first number to sort it on.
Now what i cant find, is, if there is a way to write values like int or double to the xml file, or if i should somehow tell the table that it is values it is sorting?
this is an example of what happens now:
EDIT 1
Im directly reading the XML into the datafields. Isn't there a way to use something as Parse for each cell in that specific column before i call the sorting ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来该表是按字母顺序而不是数字排序的。 这里是一个类似的问题,并有经过批准的答案。
It looks like the table is sorted alphabetically rather than numerically. Here is a similar question with an approved answer.