我在Silverlight 2中使用vanilla datepicker。我将所选日期绑定到一个值,当该值更改时,我弹出一个消息框以确认他们想要更改该值。
然而,当我更改datepicker的值后直接使用消息框时会出现奇怪的行为。日期选择器的弹出窗口不会关闭,如果您将鼠标悬停在日历上,它将选择一个日期,而不必单击鼠标。
此外,在发生这种情况之后,它似乎会影响绑定,并且在重新加载页面之前无法再次设置视图模型的属性。
这个问题比较具体,所以我附上了一个精简的例子。选择一个日期,然后按确定,然后将鼠标移到日历上以重现此日期。
我的XAML -
<Grid x:Name="LayoutRoot">
<controls:DatePicker x:Name="dpTest"
Height="25"
Width="75"
SelectedDateChanged="DatePicker_SelectedDateChanged" />
</Grid>
我的代码背后 -
Private Sub DatePicker_SelectedDateChanged(ByVal sender As System.Object, ByVal e As System.Windows.Controls.SelectionChangedEventArgs)
MessageBox.Show("Test Popup")
End Sub
任何想法或解决方法?
答案 0 :(得分:1)
一个对他不起作用但可能对你有用的建议是将呼叫“推”到调度员身上。这样,您的SelectedDateChanged处理程序将在实际显示消息框之前返回。
Private Sub DatePicker_SelectedDateChanged( ... )
' Unfortunately my VB is rusty '
' I believe this is the correct syntax. '
Dispatcher.BeginInvoke(AddressOf ShowDateMessage)
' At this point, the message box has *not* been shown '
' It will be shown once control returns to the dispatcher '
End Sub
Private Sub ShowDateMessage()
' By this point, the DatePicker popup should be closed '
' so hopefully the issues you are seeing would be avoided '
MessageBox.Show("Test Popup")
End Sub
但要记住以下几点:
答案 1 :(得分:0)
我在博客上发布了一个解决方法HERE,它通过更改工作流程使消息框变得不必要。