We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
At design time, when I use code below in xaml, images are dissapear, hoping design time will use MemoryCacheImpl.
d:DataContext="{d:DesignData /Samples/Data.xaml}"
converter is :
if (!System.ComponentModel.DesignerProperties.IsInDesignTool) { return new JetImageLoaderConfig.Builder { IsLogEnabled = true, CacheMode = CacheMode.MemoryAndStorageCache, DownloaderImpl = new HttpWebRequestDownloader(), MemoryCacheImpl = memoryCacheImpl, StorageCacheImpl = new LimitedStorageCache(IsolatedStorageFile.GetUserStoreForApplication(), "\\CacheImages", new SHA1CacheFileNameGenerator(), 1024 * 1024 * 10), // == 10 MB }.Build(); } else return new JetImageLoaderConfig.Builder { IsLogEnabled = true, CacheMode = CacheMode.OnlyMemoryCache, DownloaderImpl = new HttpWebRequestDownloader(), MemoryCacheImpl = memoryCacheImpl }.Build();
The text was updated successfully, but these errors were encountered:
Thank you for feedback, I'll handle this issue
Sorry, something went wrong.
No branches or pull requests
At design time, when I use code below in xaml, images are dissapear, hoping design time will use MemoryCacheImpl.
d:DataContext="{d:DesignData /Samples/Data.xaml}"
converter is :
The text was updated successfully, but these errors were encountered: