In your user control, create a mousehover event for your control similar to this (or another type of event), e.g.
private void picBoxThumb_MouseHover(object sender, EventArgs e) {
Your WinForm hosting the UserControl has this for UserControl to handle MouseOver, so put this in your Designer.cs
this.thumbImage1.MouseHover += new System.EventHandler(this.ThumbnailMouseHover);
What calls this method on your WinForm
private void ThumbnailMouseHover(object sender, EventArgs e) { ThumbImage thumb = (ThumbImage) sender; }
Where ThumbImage is a usercontrol type
fkerrigan
source share