我想了解下面的簡化repro代碼幕後實際發生了什麼。瞭解WPF數據綁定和值轉換器交互
我有一個Window
與ListBox
和TextBlock
綁定在一起(即主 - >細節)。然後我有一個ViewModel與幾個屬性 - 一個字符串和一個日期。到目前爲止,我實現了一個值轉換器(LongDateConverter
)。
我有一對夫婦在代碼Debug.WriteLine()
調用,導致下面的輸出:
- 啓動應用
In converter: ConverterProblem.MainWindowViewModel
In converter: null
- 單擊兩個項目之一在列表框中
In converter: ConverterProblem.DataModel
第二和第三個電話給IValueConverter
方法,我想我明白了。第二個是null
,因爲ListBox
還沒有選定的項目。第三個是我選擇的項目。
我不明白的是:
- 爲什麼是第一次調用傳遞
MainWindowViewModel
類型的值? - 爲什麼這個電話甚至發生在第一位?
這裏是我的代碼:
MainWindow.xaml:
<Window x:Class="ConverterProblem.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:app="clr-namespace:ConverterProblem"
Title="MainWindow" Height="350" Width="525">
<Window.Resources>
<app:LongDateConverter x:Key="longDateConverter"/>
</Window.Resources>
<StackPanel Orientation="Horizontal">
<ListBox SelectedItem="{Binding Data}" ItemsSource="{Binding DataList}"
DisplayMemberPath="Name"/>
<TextBlock Text="{Binding Converter={StaticResource longDateConverter}}"
DataContext="{Binding Data}" />
</StackPanel>
</Window>
MainWindow.xaml.cs:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.Globalization;
using System.Windows;
using System.Windows.Data;
namespace ConverterProblem
{
public class LongDateConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
if (value == null) {
Debug.WriteLine("In converter: null");
return "null";
}
Debug.WriteLine("In converter: " + value.GetType().ToString());
if (value.GetType() == typeof(MainWindowViewModel))
return "viewmodel";
return ((DataModel)value).Date.ToLongDateString();
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
return null;
}
}
public class DataModel
{
public string Name { get; set; }
public DateTime Date { get; set; }
}
public class MainWindowViewModel : INotifyPropertyChanged
{
private DataModel _data;
private List<DataModel> _dataList;
public MainWindowViewModel()
{
_dataList = new List<DataModel> {
new DataModel { Date = DateTime.Now, Name = "John" },
new DataModel { Date = DateTime.Now.AddDays(50), Name = "Sue" }
};
}
public DataModel Data
{
get { return _data; }
set
{
if (_data == value) return;
_data = value;
RaisePropertyChanged("Data");
}
}
public List<DataModel> DataList
{
get { return _dataList; }
}
public event PropertyChangedEventHandler PropertyChanged;
private void RaisePropertyChanged(string propertyName)
{
var handler = PropertyChanged;
if (handler != null) {
handler(this, new PropertyChangedEventArgs(propertyName));
}
}
}
public partial class MainWindow : Window
{
private MainWindowViewModel _viewModel;
public MainWindow()
{
_viewModel = new MainWindowViewModel();
DataContext = _viewModel;
InitializeComponent();
}
}
}
你,或你的自己的MVVM? – Darek
@Darek,我自己的。我在香草WPF應用程序中共享的代碼就是它的全部內容。 – GusP
如果沒有看到代碼就很難弄清楚。在第一次迭代中,轉換器需要接收MainWindowViewModel的原因一定是有原因的。你在任何地方分配數據上下文? – Darek