在下面的代码中:有没有办法在我更新 myXml.xml 时自动更新 ComboBox.Items?
我知道如果 'myXml.xml' 是本地的,我可以FileSystemWatcher
这样使用。但是这个怎么样?
<Grid.Resources>
<XmlDataProvider Source="http://www.mywebsite.com/myXml.xml"
x:Key="myXml" XPath="/data/names"/>
</Grid.Resources>
<ComboBox ItemsSource="{Binding Source={StaticResource myXml}}"
DisplayMemberPath="@name"/>