HOW TO:在 ToolStrip 控制項中建立切換按鈕
更新:2007 年 11 月
當使用者按一下切換按鈕時,此按鈕會下凹並且保持這個狀態直到使用者再按一下按鈕為止。
若要建立可切換的 ToolStripButton
程式碼使用如下列程式碼範例所示:
[Visual Basic]
toolStripButton.CheckOnClick = True toolStripButton.CheckedChanged AddressOf _ EventHandler(toolStripButton_CheckedChanged);
[C#]
toolStripButton.CheckOnClick = true; toolStripButton.CheckedChanged += new _ EventHandler(toolStripButton_CheckedChanged);