XAML 在WPF中使用XMLDataProvider的绑定不显示数据

nkhmeac6  于 2022-12-07  发布在  其他
关注(0)|答案(1)|浏览(182)

我尝试使用WPF将一些xml数据绑定到列表框,但我无法输出任何内容。xaml不显示任何错误,项目生成并运行,但列表框中不显示任何数据。

<Window x:Class="MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:local="clr-namespace:XMLDataProviderTutorial"
        mc:Ignorable="d"
        Title="MainWindow" Height="450" Width="800">

    <Window.Resources>
        <XmlDataProvider x:Key="Products">
            <x:XData>
                <ROOT xmlns="">
                    <ITEM>Socks</ITEM>
                    <ITEM>Shoes</ITEM>
                    <ITEM>Toothbrush</ITEM>
                </ROOT>
            </x:XData>
        </XmlDataProvider>
    </Window.Resources>

    <Grid>
        <ListBox 
            Background="Beige"
            ItemsSource="{Binding 
                Source={StaticResource Products}, 
                XPath='//ITEM'}"/>
    </Grid>
</Window>
siotufzp

siotufzp1#

最后,在列表框中添加了一个项目模板,修复了这个问题,由于某种原因,它没有在编辑器中更新,必须运行它才能看到输出

<ListBox
            MinHeight="200"
            Background="Honeydew"
            ItemsSource="{Binding 
                Source={StaticResource Products}, 
                XPath='//ITEM'}">

            <ListBox.ItemTemplate>
                <DataTemplate>
                    <TextBlock Text="{Binding InnerText}"/>
                </DataTemplate>
            </ListBox.ItemTemplate>
        </ListBox>

相关问题