我想知道是否有人知道为什么datepicker会将标准键传递给任何父控件的键向下路由事件,而不是返回键?
这是我写的xaml:
<WrapPanel Name="_wpParameters"
Grid.Row="0" Grid.Column="0"
Orientation="Horizontal"
Grid.IsSharedSizeScope="True"
Keyboard.KeyDown="_wpParameters_KeyDown" >
<!-- this is where the dynamic parameter controls will be added -->
</WrapPanel>
以下是我用来检查返回键的代码:
private void _wpParameters_KeyDown(object sender, KeyEventArgs e)
{
if (e.Key == Key.Return)
{
RaiseEvent(new RoutedEventArgs(LoadLiveResultsEvent, this));
}
}
我正在使用按键事故(意味着使用按键)但我发现有趣的是标准数字和/字符触发逻辑,但不是返回键。任何想法都是为什么返回键不包含在键下键中?
答案 0 :(得分:3)
KeyDown事件是较低级别的事件 可能不表现的文本输入事件 正如预期的某些控件。这个 是因为有些控件有控制权 合成或类处理 提供更高级别的版本 文本输入处理和相关 事件
在MSDN上查看...我的假设是控件正在使用该事件,并且可能将文本提交给可绑定源和其他清理,然后将事件标记为已处理。
答案 1 :(得分:0)
另外不得不提我的解决方案。 我有一个父视图,它处理来自所有子视图模型的keyDown事件。 我为DatePicker,MaskedTextBox等特殊控件声明了一个行为,它捕获了previewKeyDown隧道事件并引发了KeyDown冒泡事件:
public class EnterPressedBehavior : Behavior<UIElement>
{
public ICommand EnterPressedCommand { get; private set; }
protected override void OnAttached()
{
base.OnAttached();
AssociatedObject.PreviewKeyDown += EnterPressed;
}
protected override void OnDetaching()
{
base.OnDetaching();
AssociatedObject.PreviewKeyDown -= EnterPressed;
}
private void EnterPressed(object sender, KeyEventArgs keyEventArgs)
{
if (Keyboard.PrimaryDevice != null && Keyboard.PrimaryDevice.ActiveSource != null)
{
var eventArgs = new KeyEventArgs(Keyboard.PrimaryDevice, Keyboard.PrimaryDevice.ActiveSource, 0, keyEventArgs.Key) { RoutedEvent = UIElement.KeyDownEvent };
AssociatedObject.RaiseEvent(eventArgs);
}
}
}
此行为分配给datePicker:
<DatePicker x:Name="BirthDateDatePicker" Grid.Column="1"
Grid.Row="6" Margin="3" HorizontalAlignment="Stretch"
IsEnabled="{Binding PersonFieldsEditDenied}"
Validation.ErrorTemplate="{StaticResource DefaultValidationTemplate}"
AutomationProperties.AutomationId="BirthDateDatePicker">
<i:Interaction.Behaviors>
<viewModels:EnterPressedBehavior />
</i:Interaction.Behaviors>
</DatePicker>
由父视图监听:
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title=""
KeyDown="OnKeyDownHandler">
代码背后:
private void OnKeyDownHandler(object sender, KeyEventArgs e)
{
if (e.Key == Key.Enter)
{
// your code
}
}