P
Paul Cheetham
Hi,
I have created a custom component in c#, and I have added a new event to it.
I have a problem however in getting the event to show in the event list
in the properties window.
I have declared the event as follows:
public delegate void DownChangeDelegate(object sender, bool DownState);
public event DownChangeDelegate DownChanged;
I'm sure I must be missing something in order to make this visible, but
I've searched all over and everything I can find on events doesn't
mention anything about this.
Any help greatly appreciated.
Thanks.
Paul Cheetham
I have created a custom component in c#, and I have added a new event to it.
I have a problem however in getting the event to show in the event list
in the properties window.
I have declared the event as follows:
public delegate void DownChangeDelegate(object sender, bool DownState);
public event DownChangeDelegate DownChanged;
I'm sure I must be missing something in order to make this visible, but
I've searched all over and everything I can find on events doesn't
mention anything about this.
Any help greatly appreciated.
Thanks.
Paul Cheetham