Control Events
-
Hi i am trying to add some additional events to a control that inherits the listview however my problem is that the event doesnt seem to show up in the event browser.
public delegate void ItemClickEvent(object sender, ItemClickEventArgs e); public ItemClickEvent ItemClick;
Here is the delegate and event i created what else is required in order for these to show up in the property grid. -
Hi i am trying to add some additional events to a control that inherits the listview however my problem is that the event doesnt seem to show up in the event browser.
public delegate void ItemClickEvent(object sender, ItemClickEventArgs e); public ItemClickEvent ItemClick;
Here is the delegate and event i created what else is required in order for these to show up in the property grid.Try
[Browsable(true)]
public ItemClickEvent ItemClick;
"Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning." - Rick Cook
-
Hi i am trying to add some additional events to a control that inherits the listview however my problem is that the event doesnt seem to show up in the event browser.
public delegate void ItemClickEvent(object sender, ItemClickEventArgs e); public ItemClickEvent ItemClick;
Here is the delegate and event i created what else is required in order for these to show up in the property grid.