MVVMを使用して、テキストファイルをロードし、そのコンテンツを表示しています。
モデル
MyFile.cs
Name
およびText
//INotifyPropertyChangedを実装します
MyFileRepository.cs
//ロードしたファイルのコレクション
ViewModel
OpenFileCommand
ファイルをロードして_filerepositoryオブジェクトに追加するには
FileCollection
それはビューにバインドされています
意見
Button
発射するOpenCommand
ComboBox
ロードされたファイルの名前を表示します
TextBox
選択したファイルの内容をcombobxで表示します
<Button Name="OpenFile" Command="{Binding OpenFileCommand}">
<ComboBox Name="FilesList" ItemsSource="{Binding Path=FileCollection}" DisplayMemberPath="Name" />
<TextBox Name="FileContent" Text="{Binding the Text of selected file in combobx "/>
combobxで選択したMyFileのTextプロパティをTextBoxにバインドするにはどうすればよいですか?