Hi-
Is there any Tool type that serves the same purpose as Toggle buttons in Windows. I used e.button.pushed property in WIndows for button of style Toggle on the tool type but i can't find same property in infragistics. Any Idea?
Thanks-
You can't get the Toggle style button in infragistics but still you may play with StateToolButton to get the same behaviour. Follow these steps to add and use state button:
1. Add a new tool item with Tool Type "State Button"
2. in your tool click event. put this code.
Dim oTool As Infragistics.Win.UltraWinToolbars.StateButtonTooloTool = tbmSessionDetails.Tools(ToolItemkey)If oTool.Checked Then ' Do something Else 'Do SomethingEnd If
It's working as I expected. Thank you.