2

ObservableCollection<Source>にバインドされているコンボボックスがあります。クラスには、IDとTypeの2つのプロパティと、IDとTypeを組み合わせるToString()メソッドがあります。コンボボックスでタイプを変更すると、古いタイプが表示されますが、オブジェクトが変更されます。

public partial class ConfigView : UserControl,INotifyPropertyChanged
{

    public ObservableCollection<Source> Sources
    {
        get { return _source; }
        set { _source = value;
        if (PropertyChanged != null)
            PropertyChanged(this, new PropertyChangedEventArgs("Sources"));
        }
    }


    public ConfigView()
    {
        InitializeComponent();
        this.DataContext = this;
        Sources = new ObservableCollection<Source>();
    }


    public ChangeSelected(){
         Source test = lstSources.SelectedItem as Source;
         test.Type = Types.Tuner;
    }
}

意見:

<ListBox x:Name="lstSources" Background="Transparent" Grid.Row="1" SelectionChanged="lstSources_SelectionChanged" ItemsSource="{Binding Sources, Mode=TwoWay}" />

ソースクラス:

public enum Types { Video, Tuner }

    [Serializable]
    public class Source: INotifyPropertyChanged
    {

        private int id;

        public int ID
        {
            get { return id; }
            set { id = value;
            if (PropertyChanged != null)
                PropertyChanged(this, new PropertyChangedEventArgs("ID"));
            }
        }

        private Types type;

        public Types Type
        {
            get { return type; }
            set { type = value;
            if (PropertyChanged != null)
                PropertyChanged(this, new PropertyChangedEventArgs("Type"));
            }
        }


        public Source(int id, Types type)
        {
            Type = type;
            ID = id;
        }

        public override string ToString()
        {
            return  ID.ToString("00") + " " +  Type.ToString();
        }

        public event PropertyChangedEventHandler PropertyChanged;
    }

タイプがビデオの場合、タイプをチューナーに変更すると、コンボボックスには01Videoが表示されますが、コンボボックスには01Videoが表示されますが、01Tunerである必要があります。しかし、デバッグすると、オブジェクトタイプがチューナーに変更されます。

4

1 に答える 1

4

それは完全に正常です。は、またはが変更されたときに、それが異なる値を返すListBoxことをおそらく知ることができません。ToStringIDType

あなたはそれを違ったやり方でやらなければなりません。

<ListBox ItemsSource="{Binding ...}">
  <ListBox.ItemTemplate>
    <DataTemplate>
      <TextBlock>
        <TextBlock Text="{Binding ID}"/>
        <TextBlock Text=" "/>
        <TextBlock Text="{Binding Type}"/>
      </TextBlock>
    </DataTemplate>
  </ListBox.ItemTemplate>
</ListBox>
于 2012-12-06T10:32:21.027 に答える