在 xml 解析过程中检查 checkbox.name,这样我就不会重复复选框

发布于 2024-10-20 00:55:50 字数 517 浏览 1 评论 0原文

我需要解析一个包含许多元素及其元素属性值的 xml 文档,以创建新的复选框,并将属性值作为复选框的名称。在我的应用程序中,我已经将其中一些属性值硬编码到复选框中。因此我的问题是,有没有办法让我检查这些是否已经创建?如果是的话,我什么也不做。如果没有,我将创建新的复选框。

下面是一个要解析的 XML 文档的示例:

<target name="number1" if="nameofcheckbox1">
...
</target>
<target name="number2" if="nameofcheckbox2">
...
</target>

在上面的示例中,我已经硬编码了一个复选框并将其命名为:nameofcheckbox1CheckBox。然后我将解析该文档并为“number2”创建新的复选框。它将被称为 nameofcheckbox2CheckBox。因此,我在这里需要一些东西来确保我不会复制另一个名为 nameofcheckbox1CheckBox 的复选框。非常感谢

I need to parse a xml document with many elements with their element's attribute value to create new checkbox with the attribute value as the name of the checkbox. In my application I've already hard coded some of these attribute value into checkboxes. Therefore my question is, is there a way for me to check if these have already been created? If yes, I will not do anything. If no, I will then create new checkbox.

Here is an example of an XML document to be parsed:

<target name="number1" if="nameofcheckbox1">
...
</target>
<target name="number2" if="nameofcheckbox2">
...
</target>

In the above example, I've already hard coded a checkbox and called it: nameofcheckbox1CheckBox. Then i will parse this document and new checkbox will be created for the "number2". It will be called nameofcheckbox2CheckBox. Hence, I will need something here to make sure that i do not duplicate another checkbox called nameofcheckbox1CheckBox. Many thanks

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

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

发布评论

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

评论(1

游魂 2024-10-27 00:55:50
bool checkbox1Exists = ControlExists("nameofcheckbox1");
bool checkbox2Exists = ControlExists("nameofcheckbox2");

private bool ControlExists(string name)
{
    return FindName(name) != null;
}
bool checkbox1Exists = ControlExists("nameofcheckbox1");
bool checkbox2Exists = ControlExists("nameofcheckbox2");

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