XMLファイルからデータをインポートする方法については混乱します。 次のようにXMLファイルには、構造化されています。QtでXMLデータをインポートする方法
<Workflow>
<ItemList1>
<Item1>1</Item1>
<otherItem>1</otherItem>
<anotherItem>1</anotherItem>
........................
</ItemList1>
<TaskLists>
<NumberOfTasks>2</NumberOfTasks>
<Task_1>
<description>"description"</description>
<position>"x, y"</position>
<name>"name"</name>
<tagListNumberOfItems>2</tagListNumberOfItems>
<tagList>
<subTag>"text"</subTag>
<other_subTag>"text"</other_subTag>
</tagList>
</Task_1>
<Task_2>
<description>"description"</description>
<position>"x,y"</position>
<name>"name"</name>
<tagListNumberOfItems>4</tagListNumberOfItems>
<tagList>
<different_subTag>"text"</different_subTag>
<other_different_subTag>"text"</other_different_subTag>
<a_3rd_subTag>"text"</a_3rd_subTag>
<a_4th_subTag>"text"</a_4th_subTag>
</tagList>
</Task_2>
</TaskLists>
</Workflow>
にはどうすればいいのデータということにインポートする必要がありますか? ありがとう!