Max Katz

Results 288 comments of Max Katz

I also can't reproduce this issue by adding InnerContent property and these setters.

@tisis2 please create a new issue/discussion in Avalonia repo with your minimal sample that can be built and tested. It doesn't seem that your problem is related to 2009 schema...

In UWP we have x:Bind feature: [Event Binding](https://docs.microsoft.com/en-us/windows/uwp/xaml-platform/x-bind-markup-extension#event-binding) Event binding is a unique feature for compiled binding. It enables you to specify the handler for an event using a binding,...

In my opinion it's useful feature in UWP, but isn't friendly for MVVM. Maybe it should allow to pass custom parameters: **Click="{Binding ViewModel.RunCommand(ViewModel.Parameter)}"** or **Click="{Binding ViewModel.SearchCommand(SomeTextBox.Text)}"** or **Click="{Binding ViewModel.CalculateMethod(SomeTextBox.Text.Length, 5)}"**...

@aetaylor it should be possible to port this markup extension in Avalonia too, if there is any source code. But I guess it heavily relies on reflection.

@Athari no, we can't copy paste anything. Because it should be integrated into XamlX compiler and not be a markup extensions, and EventBinding syntax wasn't even discussed here before. The...

@SKProCH you can get styled element (or resource node) to startup a lookup from using service provider. Something like dynamic resource does https://github.com/AvaloniaUI/Avalonia/blob/master/src/Markup/Avalonia.Markup.Xaml/MarkupExtensions/DynamicResourceExtension.cs#L33C17-L38

We need a proper minimal repro to even try to help with this issue. We don't have dev capacity to investigate Ryujinx source code and repro this issue with a...

@TSRBerry you are most likely missing app.manifest file, as it's mentioned in the error message.