从 WPF 中 RadGridView 内的 RadDatePicker 调用 LostFocus 事件

问题描述 投票:0回答:1
c# wpf telerik
1个回答
0
投票

您的绑定可能无效。如果

DateOfFlightCommand
属性是在父窗口的视图模型中定义的,则应将
Window
指定为
AncestorType
:

<i:InvokeCommandAction Command="{Binding DataContext.DateOfFlightCommand, 
                            RelativeSource={RelativeSource AncestorType={x:Type Window}}}" CommandParameter="{Binding}" />
© www.soinside.com 2019 - 2024. All rights reserved.