Can I change my button control to toggle-button? Is there any simple way to change the button property to make it toggle button?
Thanks Furqan
|
Can I change my button control to toggle-button? Is there any simple way to change the button property to make it toggle button? Thanks Furqan |
|||
|
|
|
According to this post on OSIX all you need to do is use a In code:
(C# code but you see how it works). But you can do this from the Properties dialog in the designer. |
|||
|
|
If i understood correctly, you can achieve this functionality by using a flag. For example: bool isClicked = false; and in the clicked event to put the following code to invert the bool: isClicked = !isClicked; |
|||
|
|