我正在使用MVVM加載文本文件並顯示其內容。將選定對象在組合框中的屬性綁定到WPF中的TextBox
型號
MyFile.cs
有Name
和Text
//實現INotifyPropertyChanged的
MyFileRepository.cs
//收藏我的加載文件
視圖模型
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?
謝謝。
謝謝你,我沒想到它會這麼容易:) – Stacked