WPF 中的缓存 CanExecute(或其他内容)?
System.Web 中的 Cache 对象非常好。
我处理 CommandBinding.CanExecute 的方式如下:
CommandBindings[0].CanExecute += (s, e) =>
{
e.CanExecute = NotInsignificantRoutine();
};
在我的场景中,NotInsignificantRoutine() 的返回值在 5 秒窗口内不会改变。在 WPF 中缓存的最佳方式是什么?导入系统.Web?
The Cache object in System.Web is pretty freaking nice.
I handle my CommandBinding.CanExecute sort of like this:
CommandBindings[0].CanExecute += (s, e) =>
{
e.CanExecute = NotInsignificantRoutine();
};
In my scenario, the return value of NotInsignificantRoutine() doesn't change inside a 5 second window. What would be the best way to cache in WPF? Import System.Web?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
啊,我不知道这个;此处:
System.Runtime.Caching 命名空间是 .NET Framework 4 中的新命名空间。此命名空间使缓存可用于所有 .NET Framework 应用程序。在 .NET Framework 的早期版本中,缓存仅在 System.Web 命名空间中可用,因此需要依赖于 ASP.NET 类。
http://msdn.microsoft.com/en-us/library/dd997362.aspx
Ah, I didn't know about this; here:
The System.Runtime.Caching namespace is new in the .NET Framework 4. This namespace makes caching is available to all .NET Framework applications. In previous versions of the .NET Framework, caching was available only in the System.Web namespace and therefore required a dependency on ASP.NET classes.
http://msdn.microsoft.com/en-us/library/dd997362.aspx