AvaloniaUI / Avalonia

Develop Desktop, Embedded, Mobile and WebAssembly apps with C# and XAML. The most popular .NET UI client technology
https://avaloniaui.net
MIT License
25.18k stars 2.18k forks source link

[Windows] Missing Person and Pin Cursor in StandardCursorType Enum #16400

Open Der-Floh opened 1 month ago

Der-Floh commented 1 month ago

Describe the bug

I noticed that the 2 Cursors Person and Pin (also known as "Person select" and "Location select") are missing in the StandardCursorType Enum

To Reproduce

Try search for these Cursors

Expected behavior

StandardCursorType should contain all Standard Cursors to which Person and Pin count towards

Avalonia version

11.0.11

OS

Windows

Additional context

grafik

About Cursors - Win32 apps Microsoft Learn

maxkatz6 commented 1 month ago

It's not a bug, but missing API. Which likely won't be added, as this kind of cursors is hard to match on other platforms. Your best bet is to use custom cursors from a bitmap, which is already supported.