我只是想知道c#中最好的方法是使用模板创建新的xml文件并插入相关的数据项?
下面是模板,我已经标记了//这里我将插入元素。插入的元素必须采用
形式<node label="value" />
这很棘手吗?是否可以在程序中保存模板并从中创建新版本?
由于
<graph>
<node label="Batch">
<node label="Searched Batch">
//here
</node>
<node label="Compound Number">
//here
</node>
<node label="Parent Number">
//here
</node>
<node label="Chemist Name">
//here
</node>
<node label="Quantity Available">
//here
</node>
<node label="Molecular Formula">
//here
</node>
<node label="Notebook Number">
//here
</node>
<node label="Analytical Images">
<node label ="Click to View Analytical Images Data" />
</node>
<node label="Who has Registered Batches">
//here
</node>
<node label="Chemical Structure" >
<node label="Click to view compound image" />
</node>
</node>
</graph>