We have a Button down property like Boolean

I am assigned the conversion of Delphi code to .Net, and I was wondering if we have a button property, like in delphi? As answered in this link How to make Delphi TSpeedButton remain pressed if it is the only one in the group

Can we achieve this behavior in a .Net Button control?

+5
source share
1 answer

Try using CheckBox . Set the Appearance Button property so that it looks like a toggle button.

+6
source

All Articles