Click or drag to resize

DataWindow.ButtonClick Method (Typed)

X#
Provide a method that is invoked when a check box, push button, or radio button is clicked with the mouse.

Namespace:  XSharp.VO.SDK
Assembly:  XSharp.VOGUIClasses (in XSharp.VOGUIClasses.dll) Version: 2.19
Syntax
 VIRTUAL METHOD ButtonClick(
	oControlEvent AS ControlEvent
) AS USUAL
Request Example View Source

Parameters

oControlEvent
Type: ControlEvent
The ControlEvent object that describes which button was clicked.

Return Value

Type: Usual
Remarks
Tip Tip
Important! This is a callback method used by X#. Normally, it should not be called in your application code.
Button click events are propagated to the data window's owner the same way as menu events. For an in-depth discussion on command event propagation, refer to the Programmer's Guide. You must supply the code to turn a radio button on (and all the other radio buttons off) when a user clicks on a radio button. Similarly, you must also be sure to invert the state of a check box when it is clicked.
See Also