我想要这样的东西:
<DatePicker SelectedDate="{Binding StartDate}" />
对此有任何控制或简单的解决方案吗?(我使用 MVVM。)
在这种情况下,您必须StartDate
在 ViewModel 中只有属性,它才能工作。
当你在 DatePicker 中更改日期时,它会自动反映在 ViewModel 类的属性 StartDate 中。
简单视图模型:
class MainViewModel : INotifyPropertyChanged
{
private DateTime _startDate = DateTime.Now;
public DateTime StartDate
{
get { return _startDate; }
set { _startDate = value; OnPropertyChanged("StartDate"); }
}
public event PropertyChangedEventHandler PropertyChanged;
public void OnPropertyChanged(string name)
{
PropertyChangedEventHandler handler = PropertyChanged;
if (handler != null)
handler(this, new PropertyChangedEventArgs(name));
}
}
简单视图:
<Window x:Class="SimpleBinding.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d"
Title="MainWindow" Height="350" Width="525">
<StackPanel>
<DatePicker SelectedDate="{Binding StartDate}" />
</StackPanel>
</Window>
代码隐藏:
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
this.DataContext = new MainViewModel();
}
}
请参阅WPF 工具包(注意:在撰写本文时 CodePlex 已关闭/速度很慢)。