0
如何添加DataGridView中的數據,數據集(包括列名)添加DataGridView中的數據爲DataSet
嗯,我開始並在下面的代碼的中間stucked起來:
DataTable table = new DataTable();
DataRow newRow = new DataRow();
table.Columns.Add("productname"); //first column
table.Columns.Add("brandname"); //second column
table.Columns.Add("quantity"); //third column
table.Columns.Add("price"); //fourth column
然後,我需要該數據集寫入到一個XML文件,這樣
<stock>
<items> //How to add these two extra tags? ('stock' and 'items')
----Column Names----
<items>
<stock>
請提前幫助
感謝。
感謝您的答覆。然後如何將它添加到帶有兩個額外標籤的xml文件中,我提到了這個問題。我知道如何寫,但我不知道如何添加額外的標籤。 –
@Mr_Green chk更新後的部分 – Talha
實際上,我不需要爲創建的表格添加兩個父元素,即「stock」和「items」。正如我在問題中提到的那樣 –