ijklam
ijklam
在新的代码里已经使用你说的 `Microsoft.Toolkit.Uwp.UI.ImageCache` 取代了自己写的缓存了,但是在 `/CoolapkUWP/Page/ShowImagePage.xaml.cs` (查看大图页)的 `CoolapkUWP.Pages.ImageModel` 中出现了一个问题:获取到图片后在查看大图页的 `Dispatcher` 中调用 `PropertyChanged.Invoke` 报错,提示 “应用程序调用一个已为另一线程整理的接口” 。 相关代码 ``` C# private async void GetImage() { var url = Type == ImageType.SmallImage || Type ==...
请问有什么办法解决吗?
已经提交了,在 dev 分支里
那只能先在“查看大图”页用旧的缓存方案了……
Where should I add tests to?
Should this also be allowed for abstract properties? Such as: ```fsharp type IA = abstract B: int with get, internal set ```
> Should this also be allowed for abstract properties? Such as: > ```fsharp > type IA = > abstract B: int with get, internal set > ``` It seems that...
By the way, access modifiers before getter and setter will be ignored and produce a warning in signature files
will anyone make reviews on this pr?
> ```fsharp > type A() = > member val private X = 0 with public get, private set > ``` ```fsharp type A() = // Error: When the visibility for...