有没有办法在wpf中使用XPath绑定读取整个InnerXml(或OuterXml)?
示例数据提供者
<XmlDataProvider x:Key="SampleDataProvider" IsInitialLoadEnabled="True" IsAsynchronous="False" XPath="SampleDataProvider">
<x:XData>
<SampleData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="">
<Property ID="BlinkData">
<Blink>
<Property ID="Name">Blink1</Property>
<Property ID="Speed">400</Property>
<Property ID="Value1">0</Property>
<Property ID="Value2">100</Property>
</Blink>
</Property>
</SampleData>
</x:XData>
</XmlDataProvider>
示例窗口
<TextBox>
<TextBox.Text>
<Binding Source="{StaticResource ResourceKey=SampleDataProvider}" XPath="/SampleData/Property[@ID='BlinkData']" />
</TextBox.Text>
</TextBox>
我希望在文本框中看到整个InnerXml。但不幸的是,我只看到了节点值,如Blink14000100。
我在这里遗漏了什么吗?
答案 0 :(得分:3)
OK!我想我找到了答案。 wpf中的XPath最初会在内部返回一个XmlNode,可以通过在Binding语句中添加另一个属性来拦截它,路径。
例如,
<TextBox Width="100" Height="100">
<TextBox.Text>
<Binding Source="{StaticResource ResourceKey=SampleDataProvider}" XPath="/SampleData/Property[@ID='BlinkData']" Path="InnerXml" />
</TextBox.Text>
</TextBox >
请注意在Binding语句中将 Path 属性设置为InnerXml!另外添加一个转换器,并做任何你想做的事情!
在此处找到此信息,http://msdn.microsoft.com/en-us/library/system.windows.data.binding.xpath.aspx