Xml创建值条目

发布于 2024-12-29 15:27:57 字数 565 浏览 1 评论 0原文

我想这是一个非常基本的事情,但我似乎找不到解决方案:

如果我从 C# 中的 WPF 应用程序写入 xml 文档,我使用例如这一行来创建文本(字符串)。 XmlText xmlTextScore = xmlDoc.CreateTextNode("this is text");

但现在有这种情况:有这些值 0、6 和 12 如果我对列进行排序,6 将位于顶部,然后是 12,然后是 0。 所以看起来它只看第一个数字来排序。

现在我找不到的是,是否有一种方法可以将 int 或 double 之类的值写入 xml 文件,或者我是否应该以某种方式告诉表它正在排序的值?

这是现在发生的情况的一个例子: http://www.aqua-page.nl/dls/dls/images_new/example_score.PNG

编辑 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:
http://www.aqua-page.nl/dls/dls/images_new/example_score.PNG

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 技术交流群。

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

发布评论

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

评论(1

落花浅忆 2025-01-05 15:27:57

看起来该表是按字母顺序而不是数字排序的。 这里是一个类似的问题,并有经过批准的答案。

It looks like the table is sorted alphabetically rather than numerically. Here is a similar question with an approved answer.

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