0

私はこのユーザー コントロール XAML を持っています:

<Window x:Class="MyProj.Dialog"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:shell="http://schemas.microsoft.com/winfx/2006/xaml/presentation/shell"
        mc:Ignorable="d">

    <Grid>
        <ItemsControl ItemsSource="{Binding Foos}">
            <ItemsControl.ItemTemplate>
                <DataTemplate>
                    <TextBlock Text="ASd" />
                </DataTemplate>
            </ItemsControl.ItemTemplate>
        </ItemsControl>
    </Grid>

</Window>

および対応するコードビハインド:

using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using System.Windows.Media.Effects;
using System.Windows.Threading;

namespace MyProj
{
    public partial class Dialog : Window
    {
        public Dialog() : base()
        {
            InitializeComponent();

            //DataContext = this;
        }

        public ObservableCollection<string> Foos = new ObservableCollection<string> { "foo", "bar" };
    }
}

私が抱えている問題は、何らかの理由でItemsControl何も表示されないことです。奇妙なことに、出力に拘束力のある警告すら表示されません。

4

2 に答える 2

5

WPFでは、Pathバインディングのコンポーネントは、フィールドではなく、プロパティ(またはプロパティパス)のみを参照できます。コレクションをプロパティにカプセル化してみてください。

private ObservableCollection<string> foos = 
    new ObservableCollection<string> { "foo", "bar" };

public ObservableCollection<string> Foos
{
    get { return foos; }
}

また、DataContext:を設定した行のコメントを解除する必要があります。

DataContext = this;
于 2012-06-22T17:39:02.853 に答える
3

フィールドをバインドすることもできます (コンポーネントに名前を付けると最も簡単ですが、何らかの方法で参照する必要があります)。

<ItemsControl ItemsSource="{Binding}" Name="myItems">
    <ItemsControl.ItemTemplate>
        <DataTemplate>
            <TextBlock Text="{Binding}"/>
        </DataTemplate>
    </ItemsControl.ItemTemplate>
</ItemsControl>

private ObservableCollection<string> Foos = 
  new ObservableCollection<string> { "foo", "bar" };

public Dialog() : base
{
    InitializeComponent();
    myItems.DataContext = Foos;
}

これは、クラスの特定のプロパティにバインドするのではなく、正しいプロパティを公開する任意のオブジェクトにバインドするため、XAML でバインディングをハードコーディングするよりも柔軟です。多数のコレクションがあると仮定すると、DataContext を表示したいコレクションに (プログラムで) 変更するだけで、ItemsControl にそれらのコレクションを簡単に表示できます。

于 2012-06-22T17:46:27.450 に答える