ow to using public event in UserControl
C#
4
Posts
3
Posters
0
Views
1
Watching
-
Just like any other event.
public delegate void EventHandler(object o, EventArgs e);
public class MyUserControl : UserControl
{
public event EventHandler OnEvent;
}Regards Senthil _____________________________ My Blog | My Articles | WinMacro
-