Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Do we have Button down property as Boolean

I am assigned to convert delphi code to .Net, and was wondering if we have down property of button as in delphi has? As answered in this link How to make a Delphi TSpeedButton stay pressed if it's the only one in the group

Can we achieve this behavior in .Net Button control?

like image 578
Syed Avatar asked Mar 29 '12 18:03

Syed


1 Answers

Try to use CheckBox control. Set Appearance property to Button to make it look like a toggle button.

like image 78
default locale Avatar answered Oct 04 '22 07:10

default locale