<< Click to Display Table of Contents >> DrawTypeToSelecting |
public event DrawTypeToSelectingEventHandler DrawTypeToSelecting;
Description:
Use DrawTypeToSelecting to handle when the DrawType return to Selecting state.
Example:
private void myCAD1_DrawTypeToSelecting(object sender)
{
lastButton.BackColor = Color.Transparent;
btnSelecting.BackColor = Color.Gray;
lastButton = btnSelecting;
}