thevortexcloud

Results 45 comments of thevortexcloud

I suggest reading the official .NET docs and watching/reading a few tutorials. Most of this has nothing directly to do with Avalonia. https://learn.microsoft.com/en-us/dotnet/core/project-sdk/overview https://learn.microsoft.com/en-us/dotnet/standard/frameworks Anyway, you should not have android/iOS...

I am guessing OneDrive is involved somehow and there is some weird folder redirection happening.

I am guessing this is a casting problem. In which case you can either cast to your view model type or use reflection binding. https://docs.avaloniaui.net/docs/basics/data/data-binding/compiled-bindings#type-casting

I would also suggest documenting all the various platform specific launch options and how to use them. As far as I am aware it's not mentioned anywhere that they exist.

Those are the ones. I helped someone [awhile back ](https://github.com/AvaloniaUI/Avalonia/discussions/13568) that run into issues with Avalonia overriding things on a Mac. I ended up finding the solution by working backwards...

> If you have a free minute a PR would be welcome. I have made one. https://github.com/AvaloniaUI/avalonia-docs/pull/298

There is also a convention way of doing this. Which is to put a `_` at the start of the header text. EG `_File` will make the hot key set...

Ah right, I misread your post. My bad.

On a side note, https://github.com/AvaloniaUI/Avalonia/pull/14180 should actually solve some of my problems with the template part system. But having the list would still be nice.

> The ServiceProvider is created and available only inside the function OnFrameworkInitializationCompleted(), while it should be generally accessible to create object for us anywhere. The original example code I wrote...