次のことを前提とします。
Public ObservableCollection<string> SomeCollection;
Public ObservableCollection<string> SomeOtherCollection
{
get{ return SomeCollection; }
set{ SomeCollection = value; }
}
どちらもListBox
WPF UI で にバインドされています。
<ListBox ItemsSource="{Binding SomeCollection}" />
<ListBox ItemsSource="{Binding SomeOtherCollection} />
これを前提として、両方とも自動的に更新されますか?私の理解では、最初のものはそうするでしょうが、2番目のものの機能についてはまったく知りません.
注:これは大まかな例です。私と一緒にハイパーリテラルにならないでください。:)