我获得了最新的 DGML架构并通过 xsd.exe 生成了一组 c# 类,但我看不到如何以编程方式将自定义属性添加到节点。
XML 看起来像:
<?xml version="1.0" encoding="utf-8"?>
<DirectedGraph xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/vs/2009/dgml">
<Nodes>
<Node Id="_85" Label="MyNode" CustomProperty="XXX" />
</Nodes>
<Properties>
<Property Id="CustomProperty" Label="YYY" Group="ZZZ" />
</Properties>
</DirectedGraph>
如何将CustomProperty
属性添加到Node
?