Events : Event : GUI Windows Forms C# Examples


C# Examples » GUI Windows Forms » Event »

 

Events






Event handlers are represented by delegates.
Events are members of a class
Events are declared using the event keyword.

Its most commonly used form is shown here:




    
event  event-delegate  object;
    
   
  
   


event-delegate is the name of the delegate used to support the event.
object is the name of the specific event object being created.




HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo GUI Windows Forms
» Event