Button's background color turns grey when mouse hovering on it C# Winforms

I made a simple design for my WinForms app in Photoshop and I want to make some borderless buttons. In FlatAppearance properties, I changed border size to 0 and the FlatSyle is Flat but when the mouse is hovering on the button, its background color turns to grey, although I changed it to transparent. I'll attach some pics to get the problem better.

Can somebody help me, please?

How I want to look:

how I want to look

how it looks

how it looks

Upvotes: 0

Views: 1090

Answers (1)

Idle_Mind
Idle_Mind

Reputation: 39142

In the same place that you changed the border size to zero, change the MouseOverBackColor to Transparent:

enter image description here

Upvotes: 1

Related Questions