I just noticed that if I add an event using a common event handler to my UserControl, this event will not be visible in the constructor when I add a user control to the form.
public event EventHandler<TEventArgs<int>> EventNotVisibleInDesigner; public event EventHandler EventVisibleInDesigner;
Not particularly worried, but is it design / normal, or am I doing something wrong?
source share