Using Event Accessors : Event : GUI Windows Forms C# Examples


C# Examples » GUI Windows Forms » Event »

 

Using Event Accessors






You can use event accessors to take control of the event handler list.
The accessors specify how the event handler list is implemented.

This form is shown here:




    
event  event-delegate  event-name  {
                add  {
                        //  code  to  add  an  event  to  the  chain
                }
                
                remove  {
                        //  code  to  remove  an  event  from  the  chain
                }
        }
    
   
  
   




HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo GUI Windows Forms
» Event