Magnus Lindhe

Results 26 comments of Magnus Lindhe

I'm not sure if this is the error message being referred to but it now seems better than simply "Task cannot be used" and the code was committed after the...

I worked around this by not using the `IWpfShell` interface at all and instead used the following startup code: ``` public partial class MyApplication : Application { protected override void...

I get the binding error but the command will eventually get bound and the command will be invoked at runtime. I'm using Avalonia.Xaml.Behaviors 11.0.0-preview4

I will take a stab at it. First step will be to retrieve the embedded XML for XPD/XFA. Beyond that I will probably need guidance in how the API should...

Thanks for the direction! I've started implementing simple support. Will push PR for you to look at when I've come a bit further.

I guess it could be applicable to WinUI but it is not present in the current WinUI style for the TextBox. https://github.com/microsoft/microsoft-ui-xaml/blob/31ca62bb0e37b088f09b7953cf5958d2af3fa718/dev/CommonStyles/TextBox_themeresources.xaml#L212-L229 What do you mean by applicable? Does it...

From my testing it is not enough to just set the StringFormat but you also need to replace the converter: ``` if(e.PropertyType == typeof(decimal)) { e.Column.MinWidth = 100; e.Column.Width =...

Yes, I am using the `HorizontalPositionMonitor` but It would be nice if it provided notification of the order when the drag is complete in a separate event. The current implementation...

@NessfertIndia follow instructions by reliak and it should work.

I am also interested in using this library and I would like a setting that only accepts numeric input. I've done something similar before and did not use RegEx pattern....