Custom Controls in Visual C# .NET
Custom Controls in Visual C# .NET: "// Declare the event, which is associated with our
// delegate SubmitClickedHandler(). Add some attributes
// for the Visual C# control property.
[Category('Action')]
[Description('Fires when the Submit button is clicked.')]
public event SubmitClickedHandler SubmitClicked;
"
Helpful site for my controls.