-
Hello, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Yes, it's: public override void Render(DrawingContext context)
{
context.FillRectangle(Brushes.White, Bounds);
} Just inherit Control type and you will be able to make custom draw operations. |
Beta Was this translation helpful? Give feedback.
-
@jacobc94 See also this ticket: #73 Imo, Avalonia is very powerful when it comes to customizations. From other feedback I got even more powerful than MAUI. |
Beta Was this translation helpful? Give feedback.
Yes, it's:
Just inherit Control type and you will be able to make custom draw operations.