Emanuel Miroiu
Emanuel Miroiu
Hi! Yes, you can take it.
Hey, I believe that Reflection would overcomplicate things. The real issue here is the XAML code for the settings panel. To add a new entry at the top (row 0),...
One option would be to implement `IEnumerable` in `PlaygroundSettings` and return the hardcoded list of settings (hardcoded inside the constructor most probably). Another option would be to create the list...
You could have a common interface for all the settings like this: ```csharp public interface ISettingViewModel { string Name { get; } string? Description { get; } // This is...
Doing this will probably work just fine but then how would you bind the settings to the editor? I think we could use the `EditorSettings` to do that for us...
Hi @VBerman! Are you still working on this? If not, I will unassign it so others can pick it up. Thanks!
Unassigned due to inactivity.
Hi, I don't see any reason why this would not work. Have you tried it?
It's actually the other way around. You have a WPF app that displays razor pages inside web views (using BlazorWebView). https://learn.microsoft.com/en-us/aspnet/core/blazor/hybrid/tutorials/wpf?view=aspnetcore-6.0 I can't help too much here, so I'm gonna...
Hi Yokosama, I cannot think of a simple way to create a minimap but I'm pretty sure you can use the RenderTransform of the ItemContainer to get real-time updates for...