我有一个ItemsControl,其ItemsSource绑定到XML数据提供程序。代码看起来像这样。
<ItemsControl Grid.Row="1" Margin="30"
ItemsSource="{Binding Source={StaticResource VideosXML},
XPath=TutorialVideo}" >
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<WrapPanel/>
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
<ItemsControl.ItemTemplate>
<DataTemplate>
<Button Style="{StaticResource StyleMetroVideoButton}"
Content="{Binding XPath=@Name}"
ToolTip="{Binding XPath=Description}"/>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
VideosXML是一个引用外部XML文件的XML数据提供程序。正如您所看到的,Name属性适用于按钮&#39;内容和xml文件中的Description元素适用于按钮的工具提示。下面是按钮风格的代码。它基本上是一个带有褪色的#34; Play&#34;按钮顶部。
<Style TargetType="{x:Type Button}" x:Key="StyleMetroVideoButton">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Button}">
<Grid Name="PlayGrid" Background="#FF323236">
<TextBlock TextWrapping="Wrap" Text="{TemplateBinding Content}" VerticalAlignment="Top" HorizontalAlignment="Center"/>
<Image Name="Play" Source="{StaticResource BtnVideoPlayHoverPNG}" Opacity="0.0" Stretch="None"/>
</Grid>
<ControlTemplate.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Opacity" Value="0.6" TargetName="Play"/>
<Setter Property="Background" Value="#8D8D94" TargetName="PlayGrid"/>
</Trigger>
<Trigger Property="IsPressed" Value="True">
<Setter Property="Source" Value="{StaticResource BtnVideoPlayClickPNG}" TargetName="Play"/>
<Setter Property="Opacity" Value="0.6" TargetName="Play"/>
<Setter Property="Background" Value="#8D8D94" TargetName="PlayGrid"/>
</Trigger>
<Trigger Property="IsEnabled" Value="False">
<Setter Property="Opacity" Value="0.0" TargetName="Play"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
<Setter Property="Width" Value="90" />
<Setter Property="Height" Value="80" />
<Setter Property="Margin" Value="5,5,5,5"/>
</Style>
你可以从风格上看到&#34; Text&#34;在TextBlock中绑定了按钮本身的内容:Text =&#34; {TemplateBinding Content}&#34;,并且从第一段代码开始,按钮的内容通过XPath绑定到XML元素。但是,根本没有显示任何文字。如果我在按钮中硬编码内容,例如Content =&#34; A Button&#34;将会呈现。此外,工具提示工作正常,因此我知道它从XML文件中读取数据。那么什么使得绑定到XPath与硬编码值不同呢?
提前感谢您查看我的问题!
编辑:示例XML
<?xml version="1.0" encoding="utf-8" ?>
<Videos xmlns="">
<TutorialVideo Name="Video 1">
<Description>A video to watch</Description>
<Filepath>video1.wmv</Filepath>
</TutorialVideo>
</Videos>
答案 0 :(得分:1)
好的,我发现问题,由于某种原因,Content
属性传递整个xml元素,将内容绑定设置为Content="{Binding XPath=@Name, Path=Value}"
应解决问题
对此可能有合理的解释,谷歌会知道
<ItemsControl Grid.Row="1" Margin="30"
ItemsSource="{Binding Source={StaticResource VideosXML},
XPath=TutorialVideo}" >
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<WrapPanel/>
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
<ItemsControl.ItemTemplate>
<DataTemplate>
<Button Style="{StaticResource StyleMetroVideoButton}"
Content="{Binding XPath=@Name, Path=Value}"
ToolTip="{Binding XPath=Description}"/>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>