- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的代码:
var commandBinding = new CommandBinding(ApplicationCommand.New);
commandBinding.PreviewExecuted += OnPreviewExecuted;
commandBinding.Executed += OnExecuted;
CommandBindings.Add(commandBinding);
void OnPreviewExecuted(object sender, ExecutedRoutedEventArgs e) {
e.Handled = false;
}
void OnExecuted(object sender, ExecutedRoutedEventArgs e) {
DoSomething();
}
MSDN说:“...如果未处理预览事件,则会在命令目标上引发已执行事件。”
这对于 PreviewCanExecute 事件确实有效。但在这种情况下,当 PreviewExecuted-Event 正在监听时,不会调用 Executed-Event。
我没有找到与此主题相关的任何内容,所以我想问一下,这种行为是有意为之还是不正确。
最佳答案
e.Handled
的设置似乎无关紧要。
这是决定引发哪些事件的代码(RoutedCommand.cs 中的 ExecuteImpl):
ExecutedRoutedEventArgs args = new ExecutedRoutedEventArgs(this, parameter);
args.RoutedEvent = CommandManager.PreviewExecutedEvent;
if (targetUIElement != null)
{
targetUIElement.RaiseEvent(args, userInitiated);
}
else
{
...
}
if (!args.Handled)
{
args.RoutedEvent = CommandManager.ExecutedEvent;
if (targetUIElement != null)
{
targetUIElement.RaiseEvent(args, userInitiated);
}
...
}
因此,如果 e.Handled
在预览事件后为 false
,则应该引发 Executed
事件。但在调用 PreviewExecuted
处理程序(CommandBindings.cs,OnExecuted)后它永远不会为假:
PreviewExecuted(sender, e);
e.Handled = true;
它只是在调用预览处理程序后将 e.Handled
设置为 true...
为什么会这样,我不知道。 PreviewCanExecute
的工作方式相同,但它仅在 e.CanExecute
设置为 true 时将 e.Handled
设置为 true - 如果您在您的预览处理程序,无论 e.Handled
是什么,都不会调用 CanExecute
处理程序。
我的假设是“如果未处理预览事件”是“如果预览事件没有注册处理程序”的不幸措辞/em>”。
关于c# - PreviewExecuted 后未调用 Executed,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30123802/
这是我的代码: var commandBinding = new CommandBinding(ApplicationCommand.New); commandBinding.PreviewExecu
我正在使用 MVVM 设计模式构建应用程序,我想使用 ApplicationCommands 类中定义的 RoutedUICommands。由于 View(读取 UserControl)的 Comma
我是一名优秀的程序员,十分优秀!