12

我是 WPF 的新手。

我正在尝试将字符串集合绑定到组合框。

public ObservableCollection<string> ListString {get; set;}

绑定和datacontext设置如下

<Window 
        x:Class="Assignment2.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:validators="clr-namespace:Assignment2"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="350" Width="525"
        DataContext="{Binding RelativeSource={RelativeSource Self}, Path=.}">
    <Grid>
        <ComboBox  Height="23" HorizontalAlignment="Left" Margin="109,103,0,0" Name="StringComboBox" VerticalAlignment="Top" Width="120" SelectionChanged="StringComboBox_SelectionChanged">
            <ComboBox.ItemsSource>
                <Binding Path="ListString" BindsDirectlyToSource="True" Mode="TwoWay" UpdateSourceTrigger="PropertyChanged"></Binding>
            </ComboBox.ItemsSource>
        </ComboBox>

我开始知道这种情况正在发生,因为集合正在更新。如果我写

public MainWindow()
        {

            InputString = "";
            ListString = new ObservableCollection<string>();
            ListString.Add("AAA");
            ListString.Add("BBB");
            ListString.Add("CCC");
          InitializeComponent();

        }

它确实有效,但如果我InitializeComponent()按如下方式在第一行上方移动,它就不起作用。

  public MainWindow()
            {
               InitializeComponent();
                InputString = "";
                ListString = new ObservableCollection<string>();
                ListString.Add("AAA");
                ListString.Add("BBB");
                ListString.Add("CCC");                
            }

我该怎么办??

4

4 回答 4

19

解决了这个问题。实现 INotifyPropertyChanged 如下

public partial class MainWindow : Window, INotifyPropertyChanged

修改访问器如下

    private ObservableCollection<string> listString;
    public ObservableCollection<string> ListString 
    {
        get
        {
            return listString;
        }
        set
        {
            listString = value;
            NotifyPropertyChanged("ListString"); // method implemented below
        }
    }

并添加了以下事件和方法来引发事件

public event PropertyChangedEventHandler PropertyChanged;
public void NotifyPropertyChanged(string name)
{
    if (PropertyChanged != null)
    {
        PropertyChanged(this,new PropertyChangedEventArgs(name));
    }
}

它有效 B)

于 2013-10-25T05:47:36.093 回答
1

如果您将代码更改为

<Window 
    x:Class="Assignment2.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:validators="clr-namespace:Assignment2"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MainWindow" Height="350" Width="525">
<Grid>
    <ComboBox  Height="23" HorizontalAlignment="Left" Margin="109,103,0,0" Name="StringComboBox" VerticalAlignment="Top" Width="120" SelectionChanged="StringComboBox_SelectionChanged"
               ItemsSource="{Binding ListString, Mode=OneWay}"/>

CS。

  public MainWindow()
        {
           InitializeComponent();
            InputString = "";
            ListString = new ObservableCollection<string>();
            ListString.Add("AAA");
            ListString.Add("BBB");
            ListString.Add("CCC"); 

           this.DataContext=this;    
      }           

顺便说一句:使用 mode=twoway 设置 ItemsSource 对我来说毫无意义。您的组合框永远不会为您的视图模型“创建新的项目源”。

编辑:我认为您的第一个解决方案有效,因为在 xaml 中设置了 DataContext。我假设调用 InitializeComponent(); 时执行 DataContext="{Binding RelativeSource={RelativeSource Self}, Path=.}" 并且因为您的 ListString 属性只是一个自动属性并且没有实现 INotifyPropertyChanged - 您的主窗口视图不会收到通知您的 ctor 创建了一个新的 ListString 属性。

  public ObservableCollection<string> ListString {get{return _list;}; set{_list=value; OnPropertyChanged("ListString");}}

应该适用于您的两种方法,但您必须为 MainWindow 类实现 INotifyPropertyChanged。

于 2013-10-24T13:02:14.477 回答
1

您可以在后面的代码中设置组合框的项目源,或者在填充列表后再次设置 datacontext,或者您可以使用 inotifychanged 来引发属性更改。

public MainWindow()
        {
            InitializeComponent();
            InputString = "";
            ListString = new ObservableCollection<string>();
            ListString.Add("AAA");
            ListString.Add("BBB");
            ListString.Add("CCC");
            StringComboBox.ItemsSource = ListString;

        }
于 2013-10-24T13:27:01.140 回答
0

在我看来,问题是“更新” ListString。使其成为属性(选定的答案)是解决此问题的一种方法。或者内联实例化,或者将它放在InitializeComponent我认为可以的之前。

如果预计经常发生更新,则将其封装ObservableCollection在管理器类中可能会有所帮助。在使用这种设置解决我自己的问题后,我发现了这个问题。我通过INotifyCollectionChanged像这样实现和转发事件来让它工作

/// <summary>
/// Maintains an observable (i.e. good for binding) collection of resources that can be indexed by name or alias
/// </summary>
/// <typeparam name="RT">Resource Type: the type of resource associated with this collection</typeparam>
public class ResourceCollection<RT> : IEnumerable, INotifyCollectionChanged
    where RT : class, IResource, new()
{
    public event NotifyCollectionChangedEventHandler CollectionChanged
    {
        add { Ports.CollectionChanged += value; }
        remove { Ports.CollectionChanged -= value; }
    }

    public IEnumerator GetEnumerator() { return Ports.GetEnumerator(); }

    private ObservableCollection<RT> Ports { get; set; }
    private Dictionary<string, RT> ByAlias { get; set; }
    private Dictionary<string, RT> ByName { get; set; }
}
于 2017-07-12T23:16:31.940 回答