1

我有一个使用 MVVM 的应用程序。我正在尝试通过将 ComboBox 连接到我的 ViewModel 中的属性来为我的 ComboBox 设置数据绑定。当我运行应用程序时,我收到此错误消息:

Message='Provide value on 'System.Windows.Data.Binding' threw an exception.' Line number '11' and line position '176'.

这行 XAML 出现问题:

<ComboBox x:Name="schoolComboBox" HorizontalAlignment="Left" Margin="25,80,0,0" VerticalAlignment="Top" Width="250" FontSize="16" ItemsSource="{Binding LocationList}" SelectedItem="{Binding Source=LocationPicked}" />

下面是我尝试使用的 ViewModel。

using QMAC.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

using System.Windows;

namespace QMAC.ViewModels
{
  class MainViewModel : ViewModelBase
  {
    Address address;
    Location location;
    private string _locationPicked;

    public MainViewModel()
    {
        address = new Address();
        location = new Location();
    }

    public List<string> LocationList
    {
        get { return location.site; }
        set
        {
            OnPropertyChanged("LocationList");
        }
    }

    public string LocationPicked
    {
        get { return _locationPicked; }
        set
        {
            _locationPicked = value;
            MessageBox.Show(_locationPicked);
            OnPropertyChanged("LocationPicked");
        }
    }
  }
}

我是否错误地设置了属性以使其与数据绑定一起使用?

4

1 回答 1

3

您没有SelectedItem正确绑定。您需要设置Path绑定而不是Source. 我假设您已将数据上下文设置为 MainViewModel。由于该LocationPicked属性位于 MainViewModel 中,因此您无需设置Binding.Source. 使用 更改绑定以在 SelectedItem 上设置路径{Binding LocationPicked

于 2013-03-01T21:23:47.707 回答