Radio Button
Radio button control का use भी checkbox की तरह ही options provide करने के लिए किया जाता है। Radio button checkbox जैसे की selection provide करती है लेकिन इसमे केवल एक group मे केवल एक ही radio button को select किया जा सकता है। यह single selection provide करता है जबकि checkbox multiple selection provideकरता है। Radiobutton मे एक circle display होता है जब किसी RadioButton को select किया जाता है तब उस circle के अंदर एक और filed circle बन जाता है। इसमे जबgroup के किसी दूसरे radiobutton को select किया जाता है तब पहले वाली radiobutton unselect हो जाती है और select की गई button select हो जाती है। RadioButtons काgroup बनाने के लिए container control जैसे – Panel, Group Box etc. का use किया जाता है।
Properties: Checkbox की सभी properties radio button मे भी use होती हैं।
Methods: Checkbox की सभी methods भी radiobutton मे use होती हैं।
Events: CheckBox की सभी events Radio Button मे available होती हैं।
Properties: Checkbox की सभी properties radio button मे भी use होती हैं।
Methods: Checkbox की सभी methods भी radiobutton मे use होती हैं।
Events: CheckBox की सभी events Radio Button मे available होती हैं।
Public Class Form1
Private Sub RadioButton1_CheckedChanged (ByVal sender As System.Object, ByVal e As System.EventArgs) HandlesRadioButton1.CheckedChanged, RadioButton2.CheckedChanged, RadioButton3.CheckedChanged
If RadioButton1.Checked = True Then
MsgBox ("High School")
ElseIf RadioButton2.Checked = True Then
MsgBox ("Higher Secondary")
Else
MsgBox ("Graduate")
End If
End Sub
End Class
bhi
ReplyDeleteThanku
ReplyDelete