私はVB.netプログラムを持っています。XMLReader を使用して .xml ファイルを読み取ろうとしています。XML ファイルを分割して、さまざまな「セクション」に整理したいと考えています。この例"FormTitle"
と"ButtonTitle"
. <Text>
からデータを取得しFormTitle
てフォームとして表示し、それ"text"
を取り込んでボタン テキストに表示したいと考えています<Text>
。"ButtonTitle"
ここに私のXMLファイルがあります:
<?xml version="1.0" encoding="utf-8"?>
<!--XML Database.-->
<FormTitle>
<Text>Form Test</Text>
</FormTitle>
<ButtonTitle>
<Text>Button Test</Text>
</ButtonTitle>
これが私の現在のコードです:
If (IO.File.Exists("C:\testing.xml")) Then
Dim document As XmlReader = New XmlTextReader("C:\testing.xml")
While (document.Read())
Dim type = document.NodeType
If (type = XmlNodeType.Element) Then
'
If (document.Name = "Text") Then
Me.Text = document.ReadInnerXml.ToString()
End If
End If
End While
Else
MessageBox.Show("The filename you selected was not found.")
End If
(ButtonTitle)
次のセクションにどのように持ち込むことができますFormTitle
か(Text)
? if then ステートメントで参照する必要があるFormTitle
と思いますか?ButtonTitle