我有一个组合框,其ItemsSource属性绑定(bind)到ObservableCollection属性,而其SelectedIndex属性绑定(bind)到整数属性。

<ComboBox Name="cmbDealt" ItemsSource="{Binding Path=DealList, Mode=TwoWay}" SelectedIndex="{Binding Mode=TwoWay, Path=DealIndex}"></ComboBox>
<CheckBox IsChecked="{Binding Mode=TwoWay, Path=SomeCondition}" Content="Some Condition"></CheckBox>

我的数据结构看起来像
 private ObservableCollection<string> m_DealList = null;
    private int m_DealIndex = 0;
    private bool m_SomeCondition = false;

    public ObservableCollection<string> DealList
    {
        get
        {
            if (m_DealList == null)
                m_DealList = new ObservableCollection<string>();
            else
                m_DealList.Clear();

            if (m_SomeCondition)
            {
                m_DealList.Add("ABC");
                m_DealList.Add("DEF");
            }
            else
            {
                m_DealList.Add("UVW");
                m_DealList.Add("XYZ");
            }
            return m_DealList;
        }
    }

    public int DealIndex
    {
        get { return m_DealIndex; }
        set
        {
            if (value != -1)
            {
                m_DealIndex = value;
            }
        }
    }

    public bool SomeCondition
    {
        get { return m_SomeCondition; }
        set
        {
            m_SomeCondition = value;
            OnPropertyChanged("DealList");
            OnPropertyChanged("DealIndex");
        }
    }

现在,应用程序已成功加载。但是,当用户将ComboBox的SelectedIndex从0更改为1,然后选中复选框(以便调用“DealIndex”属性更改事件)时,应用程序崩溃。

我不知道为什么会这样。有人可以阐明并提出解决方案吗?

TIA ...
苏迪普

最佳答案

一种选择是将绑定(bind)从selectedindex更改为selecteditem。您可以完成同一件事。我最初尝试更改selectedindex,但从未成功。我认为它可能是只读的。

关于silverlight - 为什么实现ObservableCollection会使我的silverlight应用程序崩溃?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/992848/

10-13 09:21