WPF 中的缓存 CanExecute(或其他内容)?

发布于 2024-11-28 06:00:01 字数 287 浏览 1 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

粉红×色少女 2024-12-05 06:00:01

啊,我不知道这个;此处:

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文