1

我有两个控件 WPF DatePicker 和 WPF 扩展工具包 DateTimeUpDown。DatePicker 有两种方式绑定到 ViewModel 中的 DateTime 属性,而 DateTimeUpDown 通过 Element 绑定到 DatePicker。

绑定在滚动 DateTimeUpDown 时工作正常,这会更改 DatePicker 控件。但是,当设置 ViewModel 中属性的初始值时,不会设置 DateTimeUpDown 值。

这或多或少是这样的:在 Resources.xaml

<StackPanel Name="StartDate" Visibility="Collapsed">
  <TextBlock Text="Start Date" Margin="0, 0, 0, 2" />
  <DatePicker Name="StartDatePicker"  SelectedDate="{Binding FromDateTime, Mode=TwoWay, ValidatesOnDataErrors=True}" IsTodayHighlighted="False" Uid="ReportingStartDay" />
</StackPanel>
<StackPanel Name="StartTime" Visibility="Collapsed">
  <TextBlock Text="Start Time" Margin="0, 0, 10, 2" />                        
  <xctk:DateTimeUpDown Value="{Binding ElementName=StartDatePicker, Path=SelectedDate, Mode=TwoWay}" Background="White" Format="ShortTime" Height="26"  Margin="0,1,5,0" TextAlignment="Left"></xctk:DateTimeUpDown>
</StackPanel>

在视图模型中

private DateTime fromDateTime;
public DateTime FromDateTime {
  get { return fromDateTime; }
  set {
    fromDateTime = value;
    OnPropertyChanged("FromDateTime");
  }
}

设置 FromDateTime 后,DatePicker 设置正确,但 DateTimeUpDown 值未设置。


我现在尝试为绑定添加跟踪,不幸的是这对我没有多大帮助:

System.Windows.Data Warning: 56 : Created BindingExpression (hash=36462666) for Binding (hash=21177529)
System.Windows.Data Warning: 58 :   Path: 'SelectedDate'
System.Windows.Data Warning: 62 : BindingExpression (hash=36462666): Attach to Xceed.Wpf.Toolkit.DateTimeUpDown.Value (hash=6941388)
System.Windows.Data Warning: 67 : BindingExpression (hash=36462666): Resolving source 
System.Windows.Data Warning: 70 : BindingExpression (hash=36462666): Found data context element: <null> (OK)
System.Windows.Data Warning: 74 :     Lookup name EndDatePicker:  queried DateTimeUpDown (hash=6941388)
System.Windows.Data Warning: 78 : BindingExpression (hash=36462666): Activate with root item DatePicker (hash=55504765)
System.Windows.Data Warning: 108 : BindingExpression (hash=36462666):   At level 0 - for DatePicker.SelectedDate found accessor DependencyProperty(SelectedDate)
System.Windows.Data Warning: 104 : BindingExpression (hash=36462666): Replace item at level 0 with DatePicker (hash=55504765), using accessor DependencyProperty(SelectedDate)
System.Windows.Data Warning: 101 : BindingExpression (hash=36462666): GetValue at level 0 from DatePicker (hash=55504765) using DependencyProperty(SelectedDate): DateTime (hash=-1518077112)
System.Windows.Data Warning: 80 : BindingExpression (hash=36462666): TransferValue - got raw value DateTime (hash=-1518077112)
System.Windows.Data Warning: 89 : BindingExpression (hash=36462666): TransferValue - using final value DateTime (hash=-1518077112)

更新

我发现了问题。显然我的问题是由于绑定到了一个专门的类,该类的属性是在父类上定义的。当“覆盖”继承类中的属性实现时,它可以工作。这没有意义,但它有效。

4

2 回答 2

2

您可能想尝试调试 DateTimeUpDown 上的绑定。就像是:

<Window …
xmlns:diagnostics="clr-namespace:System.Diagnostics;assembly=WindowsBase"
/>
 <xctk:DateTimeUpDown Value="{Binding ElementName=StartDatePicker, Path=SelectedDate, Mode=TwoWay, diagnostics:PresentationTraceSources.TraceLevel=High}" ...></xctk:DateTimeUpDown>

这将在您的输出窗口中产生额外的信息,这可能有助于查明丢失值的位置。

更多信息:调试 WPF 绑定

于 2015-01-07T22:01:26.513 回答
0

您应该尝试添加UpdateSourceTrigger=PropertyChanged第二个绑定。

在双向绑定中,它将强制它在 PropertyChanged 事件上更新源。

于 2015-01-07T13:44:53.573 回答