Skip to content

Commit

Permalink
chore: linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ramezgerges authored Feb 19, 2025
1 parent 7c955da commit e12786b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/articles/features/cursors.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ uid: Uno.Features.Cursors

You can change the pointer cursor when the pointer hovers certain elements in your application at runtime on WebAssembly, macOS, or Skia Desktop by making a subclass of the `UIElement` of interest and setting its protected `ProtectedCursor` property, for example by adding a method in the the subclass.

```
```csharp
public void ChangeCursor(InputCursor cursor)
{
this.ProtectedCursor = cursor;
this.ProtectedCursor = cursor;
}
```

Expand Down

0 comments on commit e12786b

Please sign in to comment.