Nota:
El acceso a esta página requiere autorización. Puede intentar iniciar sesión o cambiar directorios.
El acceso a esta página requiere autorización. Puede intentar cambiar los directorios.
When a user clicks a toggle button, it appears sunken and retains the sunken appearance until the user clicks the button again.
To create a toggling ToolStripButton
Use code such as the following code example.
[Visual Basic]
toolStripButton.CheckOnClick = True toolStripButton.CheckedChanged AddressOf _ EventHandler(toolStripButton_CheckedChanged);[C#]
toolStripButton.CheckOnClick = true; toolStripButton.CheckedChanged += new _ EventHandler(toolStripButton_CheckedChanged);