ToolStripMenuItem::CheckState Property
.NET Framework (current version)
Gets or sets a value indicating whether a ToolStripMenuItem is in the checked, unchecked, or indeterminate state.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
public: [BindableAttribute(true)] property CheckState CheckState { CheckState get(); void set(CheckState value); }
Property Value
Type: System.Windows.Forms::CheckStateOne of the System.Windows.Forms::CheckState values. The default is Unchecked.
| Exception | Condition |
|---|---|
| InvalidEnumArgumentException | The CheckState property is not set to one of the System.Windows.Forms::CheckState values. |
Use the CheckState property to control or determine whether a ToolStripMenuItem is initially checked, unchecked, or in an indeterminate state.
Starting with the .NET Framework 4.5.2, if the CheckState property is set to Checked or Indeterminate, the corresponding icon may be resized. Resizing is determined by the system DPI setting when the app.config file contains the following entry:
<appSettings> <add key="EnableWindowsFormsHighDpiAutoResizing" value="true" /> </appSettings>
.NET Framework
Available since 2.0
Available since 2.0
Show: