Daoting
Daoting
Interesting issue. There does not seem to be any work around [this in emscripten](https://emscripten.org/docs/api_reference/Filesystem-API.html). 似乎没有任何解决方法
1. Splash Screens升级WinUI后无效 2. 任务栏图标有背景色,uwp背景透明,试过无法调整,并且第一次运行后替换 Square44x44Logo.scale-200.png 无效,图标不刷新 3. 窗口标题栏图标:需要设置*.ico文件,可以通过 ExtendsContentIntoTitleBar = true 完全自定义标题栏,不调整 4. web部署方式因漏洞已被禁用:ms-appinstaller:?source=, 等待微软修复: https://techcommunity.microsoft.com/t5/windows-it-pro-blog/disabling-the-msix-ms-appinstaller-protocol-handler/ba-p/3119479
Microsoft.Toolkit.Uwp.UI.Lottie 与 Uno.WinUI.Lottie 对应,主要提供LottieVisualSource,供 AnimatedVisualPlayer 使用。 Microsoft.Toolkit.Uwp.UI.Lottie 改名为 CommunityToolkit.WinUI.Lottie ,等待 V7.1.2 ,目前只支持uwp,不支持winui. 所以当前uno内的Lottie动画正常,winui暂无,参见: https://platform.uno/docs/articles/features/Lottie.html?tabs=windows
CommunityToolkit.WinUI.Lottie 7.1.2 只支持 net5.0-windows10.0.18362
Lottie动画已正常 CommunityToolkit.WinUI.Lottie Version="8.0.0-rc"
``` ```
在wasm上StorageFile由uno实现 ``` async void OpenFile(object sender, RoutedEventArgs e) { var filePicker = Kit.GetFileOpenPicker(); filePicker.FileTypeFilter.Add(".xls"); filePicker.FileTypeFilter.Add(".xlsx"); filePicker.FileTypeFilter.Add(".xml"); StorageFile storageFile = await filePicker.PickSingleFileAsync(); if (storageFile != null) { var stream = await...