MartyIX

Results 209 comments of MartyIX

Yes, I have realized that the layout is wrong once I saw the snapshots. This is the current screenshot for Windows: ![image](https://github.com/dotnet/maui/assets/203266/7b8f9fcb-aadc-45ca-9b2f-a71cde0300ad)

Ok, my bad, I added a Windows snapshot but that had different dimensions (presumably because my display has different settings than the "CI one"). I added snapshots for Android &...

I would try something like this: ```xaml ```

> [@MartyIX](https://github.com/MartyIX) solution did not work. All of the Rectangles are still Green. > > I also tried using a custom ValueConverter. In doing so, I can verify that my...

@liqiug https://github.com/dotnet/maui/pull/28499 was merged and is planned to be released as .NET 9 SR7[^1]. You can try MAUI nightly to confirm if the issue is fixed for you or not....

This issue is in the backlog milestone. It basically means that nobody is assigned to work on this and there is no progress (AFAIK). Issues that are currently being worked...

Perhaps @NirmalKumarYuvaraj could take a look because of the work in #25006.

I understand that the fix: ```diff -visualElement.SetCustomCursor((CursorIcon)newvalue, Application.Current?.MainPage?.Handler?.MauiContext); +visualElement.SetCustomCursor((CursorIcon)newvalue, visualElement.Handler?.MauiContext ?? Application.Current?.Windows.LastOrDefault()?.Page?.Handler?.MauiContext); ``` is meant _not_ to support multi-window applications, right? Or does it not matter from which window one...