XAML を介してリスト ボックスにバインドされたテキスト ボックスがあります。テキスト ボックスはビュー モデルにもバインドされています。これを取得するにはマルチバインディングが使用されます。以下を参照してください。
ビューモデルで使用する前に、選択した項目を変更する必要があるという考えです。
このような単純なタスクを複雑にするために、このコードに満足していません。各バインディングは単独で完全に機能します。要素を選択してそれを変更し、変更された文字列を使用してビューモデルでさらに処理するには、どの簡単な方法を使用できますか?
--------------XAML--------------
<Window x:Class="WpfApplication1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:WpfApplication1"
Title="MainWindow" Height="350" Width="525">
<Window.Resources>
<local:TheMultiValueConverter x:Key="theConverter"/>
</Window.Resources>
<StackPanel>
<TextBox Name="textBox">
<TextBox.Text>
<MultiBinding Converter="{StaticResource theConverter}" Mode="OneWay">
<Binding/>
<Binding ElementName="textBox" Path="Text"/>
<Binding ElementName="listBox" Path="SelectedItem" Mode="OneWay"/>
</MultiBinding>
</TextBox.Text>
</TextBox>
<ListBox Name="listBox" ItemsSource="{Binding Data}" />
</StackPanel>
</Window>
--------------ビューモデル--------------
public class ViewModel : INotifyPropertyChanged
{
string modified;
public string Modified
{
get { return modified; }
set
{
if (modified != value)
{
modified = value;
NotifyPropertyChanged("Modified");
}
}
}
List<string> data = new List<string> { "Test1", "Test2" };
public List<string> Data
{
get { return data; }
}
public event PropertyChangedEventHandler PropertyChanged;
private void NotifyPropertyChanged(string propertyName)
{
PropertyChangedEventHandler handler = PropertyChanged;
if (handler != null)
{
handler(this, new PropertyChangedEventArgs(propertyName));
}
}
}
-------------- 値コンバーター --------------
public class TheMultiValueConverter : IMultiValueConverter
{
public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture)
{
var viewModel = values[0] as ViewModel;
if (viewModel != null)
{
viewModel.Modified = (string)values[1];
if (string.IsNullOrWhiteSpace(values[1].ToString()))
return values[2];
else
return values[1];
}
return null;
}
public object[] ConvertBack(object value, Type[] targetTypes, object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}
}