Controls:-----------Most controls in .NET derive from the System.Windows.Forms.Control class. This class defines the basic functionality of the controls, which is why many properties and events in the controls we'll see are identical. Many of these classes are themselves base classes for other controls, as is the case with the Label and TextBoxBase...
An Example to create an UserControl to create a checklist box and how to set default check in ASP.Net Using C#
using System;using System.Collections;using System.ComponentModel;using System.Drawing;using System.Data;using System.Text;using System.Windows.Forms;namespace MatrixControl{ public partial class M42CheckBoxControl : UserControl { private static int index = 0; public M42CheckBoxControl() { InitializeComponent();...
How to Send data from a User Control to another user control on a single form using Events and Delegates:--
This is an example how to create Dynamic Check Boxes and how to communicate betwwen two user controls on a sigle form using Events and Delegates.In this application I have to send some data from control2 to control1 on a single button click.So for this i have used event and Delegates.Have A look.//Control2:----namespace ParserF{ public partial class...