WPFコンボボックスがあります
<ComboBox x:Name="tCountry" HorizontalAlignment="Left" Margin="96,151,0,0" VerticalAlignment="Top" Width="146" TabIndex="6"/>
そして私がユニコードから抽出したいくつかのxmlデータ(CLDR)
<?xml version="1.0" encoding="UTF-8" ?>
<country>
<territory type="AC">Ascension Island</territory>
<territory type="AD">Andorra</territory>
<territory type="AE">United Arab Emirates</territory>
<territory type="AF">Afghanistan</territory>
<territory type="AG">Antigua and Barbuda</territory>
<territory type="AI">Anguilla</territory>
<territory type="AL">Albania</territory>
....
</country>
コンボボックスにこれらの国が表示され、vb.netでデータを送信するときに2文字のISOコードを抽出できるようにするには、どうすればよいですか。