Hello
How to remove border and hover background from eto Button?
LogoButton = new Button
{
Image = logoImage,
BackgroundColor = Colors.Transparent
};
Hello
How to remove border and hover background from eto Button?
LogoButton = new Button
{
Image = logoImage,
BackgroundColor = Colors.Transparent
};
Eto styling requires you to create platform specific styling and is a bit tricky. If you want to do a lot of styling Eto.Forms.Drawable is your best friend.
Thank you @CallumSykes