Symbai
Symbai
The most confusing for new users (like I am/was) is that [events are not visible in Intellisense](https://github.com/AvaloniaUI/AvaloniaVS/issues/133). I have no idea which events exist without knowing the source code in...
Dupe of #14591
> This is specifically about CollectionView performance Yes, have you read the entire posts in #14591 ? They mention collectview takes very long to render (when a user navigates to)....
@PureWeen I have a repro here: https://github.com/dotnet/maui/issues/13633 which *might* be the same issue, it was also linked with the original issue. The only difference is that in my issue cells...
UI stuff should always be done on UI thread. Instead of relying to `DispatchIfRequiredAsync` just use https://learn.microsoft.com/en-us/dotnet/maui/platform-integration/appmodel/main-thread?view=net-maui-7.0#run-code-on-the-ui-thread
The link above is from MAUI docs and explains what you should use in your scenario, why and when. And the things you were doing previously are not stated there.
Yeah it works fine with .NET 7. But it is normal that the output files are extremely huge in release mode? And that there are still many other files in...
Yeah I was talking about all of these: ``` clrjit.dll D3DCompiler_47_cor3.dll mscordbi.dll vcruntime140_cor3.dll ``` and so on. There are 21 additional files with a total size of 21mb.
I dont count PDB file. It is a simple "hello world" Winforms app with no other external lib / dependency than WinFormsComInterop. Deleting all code reduces it to 17 additiona...
Doesn't matter, I published through VS but using dotnet publish without any additional parameter generates the same output: `\bin\Debug\net7.0-windows\win-x64\publish:`  //edit: and yes I've cleaned the output folder before publishing....