1

なぜこれが機能しないのか誰にもわかりますか。それは本当に簡単ですが、開始時に ListBox は空です。コード ビハインドには、InitializeComponent() のみが含まれています。

うまくいけば、誰かがアイデアを持っています...

<Window x:Class="DasDataGrid.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:sys="clr-namespace:System;assembly=mscorlib"
    Title="MainWindow" Height="350" Width="700">

    <Window.Resources>
        <XmlDataProvider x:Key="Maschinen" XPath="/machines">
            <x:XData>
                <machines>
                    <machine name="alte Maschine"/>
                    <machine name="neue Maschine"/>
                </machines>
            </x:XData>
        </XmlDataProvider>
    </Window.Resources>
    <ListBox ItemsSource="{Binding Source={StaticResource Maschinen},XPath=machine/@name}"
              IsSynchronizedWithCurrentItem="True"
              SelectedIndex="1">
    </ListBox>
</Window>

@HBこれが私がテストしたコードです。それを開始すると、リストボックスはまだ空です。何が悪いのかわからない。

<Window x:Class="WpfApplication1.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MainWindow" Height="350" Width="525">
<StackPanel>
    <StackPanel.Resources>
        <XmlDataProvider x:Key="Maschinen">
        <x:XData>
            <machines xmlns="">
                <machine name="alte Maschine"/>
                <machine name="neue Maschine"/>
            </machines>
        </x:XData>
        </XmlDataProvider>
    </StackPanel.Resources>

    <ListBox ItemsSource="{Binding Source={StaticResource Maschinen}, XPath=machine}"
      IsSynchronizedWithCurrentItem="True" DisplayMemberPath="@name"
      SelectedIndex="1">
    </ListBox>

</StackPanel>
</Window>    
4

1 に答える 1

0

xmlns を空の文字列に設定する必要があります。

<x:XData>
    <machines xmlns="">
        <machine name="alte Maschine"/>
        <machine name="neue Maschine"/>
    </machines>
</x:XData>

MSDN :

XML データのルート ノードには、XML 名前空間を空の文字列に設定する xmlns 属性があります。これは、XAML ページ内でインライン化されているデータ アイランドに XPath クエリを適用するための要件です。このインラインの場合、XAML とデータ アイランドは System.Windows 名前空間を継承します。このため、名前空間を空白に設定して、XPath クエリが System.Windows 名前空間によって修飾されないようにする必要があります。これにより、クエリが誤って送信されます。


このようにバインドすることもできます (結果に違いはありませんが):

<ListBox ItemsSource="{Binding Source={StaticResource Maschinen}, XPath=machine}"
          IsSynchronizedWithCurrentItem="True" DisplayMemberPath="@name"
          SelectedIndex="1">
</ListBox>
于 2011-12-02T22:41:09.790 に答える