CheckBox CodeSample - Simple CheckedChanged handler
From Visual WebGui Wiki
| This article will have a few sections added to it soon, based on the following article type skeleton: NewCodeSampleTemplate |
Overview
A very simple example of a CheckedChanged event handler on a CheckBox.
VB.NET Code
Private Sub CheckBox1_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckBox1.CheckedChanged MessageBox.Show("CheckBox is now " + CheckBox1.Checked.ToString) End Sub
C# Code
| The conversion of this code to C# has not been completed yet. Please feel free to contribute and add contents to the Wiki |
