我想在Windows Phone應用程序中使用Linq到Xml和Xaml數據綁定,但沒有運氣,下面是this example。如何在SilverLight/Windows Phone中綁定到Xml?
我有一些的XAML看起來像這樣:
<Image
Source="{Binding Path=Element[image].Value, Converter={StaticResource UriBitmapConverter}}"
Grid.Column="2" MaxWidth="75" HorizontalAlignment="Right" VerticalAlignment="Top"/>
的DataContext
是XDocument
<image>someuri</image>
。然而,這並不使過去的分析階段,因爲我得到:
Additional information: Invalid attribute value
{Binding Path=Element[image].Value, Converter={StaticResource UriBitmapConverter}} for property
是這種在Silverlight結合不可能的,或者我只是失去了一些東西?
您是否嘗試過使用Element(「image」)。Value? – indyfromoz 2010-10-23 08:12:05
是。沒有喜悅:錯誤:引號字符只允許在值的開始處。 – dkackman 2010-10-23 11:59:49