博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
今天被Prism里面的一段代码雷到了
阅读量:5268 次
发布时间:2019-06-14

本文共 786 字,大约阅读时间需要 2 分钟。

public virtual bool CanExecute(object parameter)        {            bool hasEnabledCommandsThatShouldBeExecuted = false;            ICommand[] commandList;            lock (this.registeredCommands)            {                commandList = this.registeredCommands.ToArray();            }            foreach (ICommand command in commandList)            {                if (this.ShouldExecute(command))                {                    if (!command.CanExecute(parameter))                    {                        return false;                    }                    hasEnabledCommandsThatShouldBeExecuted = true;                }            }            return hasEnabledCommandsThatShouldBeExecuted;        }

转载于:https://www.cnblogs.com/waynebaby/archive/2010/02/20/1669695.html

你可能感兴趣的文章
包含LOB_Data列的表删除大量数据后表及数据库文件的收缩
查看>>
libhdfs配置使用
查看>>
Silverlight StoryboardManager 故事板管理类
查看>>
makefile函数
查看>>
vue.js
查看>>
持续学习
查看>>
迭代器和生成器(难点)
查看>>
内存分为的5大区
查看>>
5. Docker - 仓库管理
查看>>
Windows Azure Cloud Service (29) 在Windows Azure发送邮件(下)
查看>>
CS61A Efficiency 笔记
查看>>
197. 上升的温度
查看>>
ArcGIS Server Javascript 多图对比功能
查看>>
Notepad++使用教程
查看>>
中缀表达式转后缀表达式
查看>>
第六次实训作业异常处理
查看>>
c#实现把异常写入日志示例(异常日志)
查看>>
【Selenium-WebDriver问题点】chromeDriver和chrome浏览器版本之间的兼容性问题
查看>>
Delphi采用接口实现DLL调用
查看>>
苹果充电器USB端的识别电阻的设置
查看>>