Передача пользовательских объектов в UserControl через привязку XAML - PullRequest
2 голосов
/ 11 июля 2011

То, что я пытаюсь сделать, это создать UserControl, которому я могу передать объект Address. Кажется, что когда я передаю Address="{Binding Path=Person.Address}" в UserControl, встроенный TextBox связывается с Text="{Binding Path=Person.Address}" вместо Text="{Binding Path=Address.Summary}"

Я все делаю неправильно?

Вот ссылка на проект, если вы хотите поиграть с ним: http://dl.dropbox.com/u/4220513/WpfApplication2.zip

Доменные объекты:

namespace WpfApplication2
{
    public class Person
    {
        public String Name { get; set; }
        public Address Address { get; set; }
    }

    public class Address
    {
        public String Street { get; set; }
        public String City { get; set; }

        public String Summary { get { return String.Format("{0}, {1}", Street, City); } }
    }
}

MainWindow:

namespace WpfApplication2
{
    public partial class MainWindow : Window
    {
        private readonly ViewModel vm;
        public MainWindow()
        {
            InitializeComponent();
            vm = new ViewModel();
            DataContext = vm;

            vm.Person = new Person()
            {
                Name = "Bob",
                Address = new Address()
                {
                    Street = "123 Main Street",
                    City = "Toronto",
                },
            };
        }
    }

    public class ViewModel : INotifyPropertyChanged
    {
        private Person person;
        public Person Person { get { return person; } set { person = value; NotifyPropertyChanged("Person"); } }

        public event PropertyChangedEventHandler PropertyChanged;

        protected void NotifyPropertyChanged(String propertyName)
        {
            if (PropertyChanged != null)
            {
                PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
            }
        }
    }
}

<Window x:Class="WpfApplication2.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:local="clr-namespace:WpfApplication2"
        Title="MainWindow" Height="350" Width="525">
    <StackPanel>
        <TextBlock Text="Name:" />
        <TextBlock Text="{Binding Path=Person.Name}" />
        <TextBlock Text="Address:" />
        <local:AddressView Address="{Binding Path=Person.Address}" />
    </StackPanel>
</Window>

UserControl:

namespace WpfApplication2
{
    public partial class AddressView : UserControl
    {
        public AddressView()
        {
            InitializeComponent();
            DataContext = this;
        }

        public Address Address
        {
            get { return (Address)GetValue(AddressProperty); }
            set { SetValue(AddressProperty, value); }
        }

        public static readonly DependencyProperty AddressProperty =
            DependencyProperty.Register("Address", typeof(Address), typeof(AddressView));
    }
}

<UserControl x:Class="WpfApplication2.AddressView"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
    <TextBox Text="{Binding Path=Address.Summary}" IsReadOnly="True" />
</UserControl>

Ошибка:

System.Windows.Data Error: 40 : BindingExpression path error: 'Person' property not found on 'object' ''AddressView' (Name='')'. BindingExpression:Path=Person.Address; DataItem='AddressView' (Name=''); target element is 'AddressView' (Name=''); target property is 'Address' (type 'Address')

1 Ответ

2 голосов
/ 11 июля 2011

В MainWindow.xaml:

<local:AddressView DataContext="{Binding Path=Person.Address}" />

, а затем в AddressView.xaml

<TextBox Text="{Binding Path=Summary, Mode=OneWay}" IsReadOnly="True" />

Для меня отображается сводная информация.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...