我有一个包含用户控件的视图,它有自己的视图和视图模型。
用户控件的视图如下所示:
<UserControl.DataContext>
<viewmodel:TimePickerViewModel x:Name="timePickerViewModel"/>
</UserControl.DataContext>
在用户控件的视图模型中,我有一个属性 ValidTime:
public DateTime? ValidTime
{
get { return validTime; }
set
{
validTime = value;
OnPropertyChanged("ValidTime");
}
}
在包含用户控件的视图中,我需要访问属性 ValidTime:
<timepicker:TimePickerView Grid.Row="0" x:Name="timePicker"/>
<Button Grid.Row="1" Content="Plan" Command="{Binding PlanCommand}" CommandParameter=" {Binding ElementName=timePicker, Path=ValidTime}"/>
在最后一个视图的视图模型中,我有这个:
public ICommand PlanCommand
{
get { return planCommand ?? new RelayCommand<DateTime?>(Plan); }
}
void Plan(DateTime? date)
{
if(pickedMagnet != null)
pickedMagnet.StartDatePlanned = date;
}
但是日期时间呢?我在 Plan 方法中收到的参数始终为 null。但是在调试模式下,我已经看到属性 ValidTime 被分配了一个值。我也试过这个:
<Button Grid.Row="1" Content="Plan" Command="{Binding PlanCommand}" CommandParameter="{Binding ElementName=timePicker.timePickerViewModel, Path=ValidTime}"/>
和
<Button Grid.Row="1" Content="Plan" Command="{Binding PlanCommand}" CommandParameter="{Binding ElementName=timePicker, Path=timePickerViewModel.ValidTime}"/>
但这些都不起作用。
任何人都知道我的情况的解决方案或最佳实践吗?