0
我只是想知道在c#中最好的方法是使用模板來創建一個新的XML文件並插入相關的數據項?使用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>