CheckBox.AutoCheck プロパティ
チェック ボックスがクリックされるときに Checked 値または CheckState 値、およびチェック ボックスの外観を自動的に変更するかどうかを示す値を取得または設定します。
Public Property AutoCheck As Boolean
[C#]
public bool AutoCheck {get; set;}
[C++]
public: __property bool get_AutoCheck();public: __property void set_AutoCheck(bool);
[JScript]
public function get AutoCheck() : Boolean;public function set AutoCheck(Boolean);
プロパティ値
Checked 値または CheckState 値、およびコントロールの外観が Click イベントで自動的に変更される場合は true 。それ以外の場合は false 。既定値は true です。
解説
AutoCheck が false に設定されている場合は、コードを追加して Click イベント ハンドラの Checked 値または CheckState 値を更新する必要があります。
使用例
CheckBox を作成および初期化し、トグル ボタンの外観を生成する例を次に示します。 AutoCheck を false に設定し、トグル ボタンを Form に追加します。
Public Sub InstantiateMyCheckBox()
' Create and initialize a CheckBox.
Dim checkBox1 As New CheckBox()
' Make the check box control appear as a toggle button.
checkBox1.Appearance = Appearance.Button
' Turn off the update of the display on the click of the control.
checkBox1.AutoCheck = False
' Add the check box control to the form.
Controls.Add(checkBox1)
End Sub 'InstantiateMyCheckBox
[C#]
public void InstantiateMyCheckBox()
{
// Create and initialize a CheckBox.
CheckBox checkBox1 = new CheckBox();
// Make the check box control appear as a toggle button.
checkBox1.Appearance = Appearance.Button;
// Turn off the update of the display on the click of the control.
checkBox1.AutoCheck = false;
// Add the check box control to the form.
Controls.Add(checkBox1);
}
[C++]
public:
void InstantiateMyCheckBox() {
// Create and initialize a CheckBox.
CheckBox __gc *checkBox1 = new CheckBox();
// Make the check box control appear as a toggle button.
checkBox1->Appearance = Appearance::Button;
// Turn off the update of the display on the click of the control.
checkBox1->AutoCheck = false;
// Add the check box control to the form.
this->Controls->Add(checkBox1);
};
[JScript]
public function InstantiateMyCheckBox()
{
// Create and initialize a CheckBox.
var checkBox1 : CheckBox = new CheckBox();
// Make the check box control appear as a toggle button.
checkBox1.Appearance = Appearance.Button;
// Turn off the update of the display on the click of the control.
checkBox1.AutoCheck = false;
// Add the check box control to the form.
Controls.Add(checkBox1);
}
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET