CheckBox control का use user को option select करने के facility provide करने के लिए किया जाता है। यह user को multiple selection provide करता है अर्थात multiple checkbox मे multiple checkbox को एक साथ select किया जा सकता है। checkbox control मे text display होता है और text से पहले एक rectangular button display होती है जिसके सिलैक्ट होने पर एक check का symbol इसमे display होने लगता है और unselect होने पर यह check symbol display नहीं होता है।
Properties: सभी Common properties इस control मे apply होती हैं। साथ ही इसमे कुछ properties निम्न हैं।
· Checked: इसका use check box को check या uncheck करने के लिए और उसकी वैल्यू को get करने के लिए किया जाता है। इसके ture होने पर checkbox checked होता है और false होने पर यह unchecked होता है।
Methods: सभी common methods इसमे apply होंगी।
Events: सभी common events भी इसमे apply होती हैं। अन्य events निम्न हैं।
· CheckedChanged: यह checkbox के select या unselect होने पर होती है।
Private Sub CheckBox1_CheckedChanged (ByVal sender As Object, ByVal e As System.EventArgs) Handles CheckBox1.CheckedChanged
End Sub
Public Class Form1
Private Sub CheckBox1_CheckedChanged (ByVal sender As Object, ByVal e As System.EventArgs) HandlesCheckBox1.CheckedChanged, CheckBox2.CheckedChanged
If CheckBox1.Checked = True Then
MsgBox ("Game")
End If
If CheckBox2.Checked = True Then
MsgBox ("Drawing")
End If
End Sub
End Class
No comments:
Post a Comment