今、私はasp.net mvcをC#で使用しているWebプロジェクトに割り当てられています。 以下のようないくつかのXMLファイルをロードする必要があります。これは、どのコントロールを作成する必要があるかを示します。 これはまた、コントロールの種類、その値、サイズ、location.iが私のやり方を見つけることができないことを教えてくれますか?私を正しい方法で案内してください。XMLファイルをWebフォームに。
<Object type="System.Windows.Forms.Form" name="frmShow" >
<Object type="System.Windows.Forms.RadioButton" name="optOne">
<Property name="Size">86, 24</Property>
<Property name="Text">Option1</Property>
<Property name="Location">175, 126</Property>
</Object>
<Object type="System.Windows.Forms.CheckBox" name="chkOne">
<Property name="Size">84, 24</Property>
<Property name="Text">CheckOne</Property>
<Property name="Location">84, 126</Property>
</Object>
<Object type="System.Windows.Forms.TextBox" name="txtOne">
<Property name="Size">177, 20</Property>
<Property name="Text">ABC</Property>
<Property name="Location">84, 88</Property>
</Object>
<Object type="System.Windows.Forms.Label" name="lblOne">
<Property name="Size">100, 23</Property>
<Property name="Text">Name</Property>
<Property name="Location">8, 91</Property>
</Object>
<Object type="System.Windows.Forms.TextBox" name="txtTwo">
<Property name="Size">177, 20</Property>
<Property name="Text">Home Address</Property>
<Property name="Location">84, 50</Property>
</Object>
<Object type="System.Windows.Forms.Label" name="lblTwo">
<Property name="Size">100, 23</Property>
<Property name="Text">Address</Property>
<Property name="Location">7, 53</Property>
</Object>
<ItemDataSet>
<ItemTable>
<TableName>tblItemOne</TableName>
<Row1>
<Repeat>True</Repeat>
<ItemName>Item001</ItemName>
<Qty>10</Qty>
<Price>1000</Price>
</Row1>
<Row2>
<Repeat>True</Repeat>
<ItemName>Item002</ItemName>
<Qty>20</Qty>
<Price>2000</Price>
</Row2>
<Row3>
<Repeat>false</Repeat>
<ItemName>Item003</ItemName>
<Qty>30</Qty>
<Price>3000</Price>
</Row3>
</ItemTable>
</ItemDataSet>
</Object>
webf xamlにシリアライズされたorm。デシリアライズを試みてください。 –
あなたは私に詳細を教えてもらえますか?実際、私はwebform.pleaseに慣れていません。 – Chong
XmlSerializerは、オブジェクトをXMLに変換できます。 XMLは、シリアル化されたオブジェクトである可能性があります。 そうであれば、XMLを逆シリアル化してオブジェクトに変換できます。それは事実ではないかもしれないが、 それは一見価値がある。 http://msdn.microsoft.com/en-us/library/system.xml.serialization.xmlserializer.aspx –