Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to hide the circle in RadioButton control?

Tags:

c#

winforms

I have various RadioButton control inside a GroupBox control. Each one represents a coin denomination, when I select one the program does some logic with the selected coin. That works correctly, but I want to remove the RadioButton circle (the white one). Check the attached image:

Coin denominations

How I can remove the circle in a RadioButton control?

like image 305
InfZero Avatar asked Mar 20 '23 06:03

InfZero


1 Answers

The easy way: Change the RadioButton's Appearence property to Button value.

RadioButton.Appearance Property (System.Windows.Forms)

This is the result:

enter image description here

like image 119
InfZero Avatar answered Apr 09 '23 16:04

InfZero