MagicAndre1981

Results 85 comments of MagicAndre1981

> Is there no workaround for this issue? simply install the latest Xamarin AndroidX packages on your on to the Android project and ignore the NU1608 warnings

for android you also need to enable developer options and allow USB/Wifi debugging to deploy/debug apps. So there is no difference

> But also, I currently cannot officially support ARM64 when I have no ARM devices and cannot test (or fix) ARM at all. At this time I'm not willing to...

I still prefer a winforms-like drag-and-drop designer, I hate this XAML only "design" way. I spend most time trying to make the UI look somehow useable. And the hotreload thing...

Duplicate of https://github.com/dotnet/maui/issues/7377

this also never really worked well in XF, so there I used `VisualStateManager` to change the `IsEnabled` property and here the change always worked. But in MAUI `VisualStateManager` is broken...

I use [VisualStateManager](https://learn.microsoft.com/en-us/dotnet/maui/user-interface/visual-states?view=net-maui-7.0) to change the change the state via `VisualStateManager.GoToState(ButtonLog1l, "Disabled");`. My mistake was to not include `` entry now everything works. ``` ```

remove the `s`, so only use `TargetFramework`. Does this work?

I get the same issue when using the DataGrid from syncfusion to display data. SfViewSimpleSample shows me that you also use their controls. So bug in their lib?

syncfusion support said they fix my DataGrid [with this weeks updates](https://www.nuget.org/packages/Syncfusion.Maui.DataGrid/20.2.43) , but I run into a new COMException: ``` Exception thrown: 'System.Runtime.InteropServices.COMException' in WinRT.Runtime.dll Error HRESULT E_FAIL has been...