You can simulate the appearance of a border around your user control by using the carefully installed Panel control in your UC and monitoring the position of the mouse while tracking low-level Windows messages.
On the UserControl design surface, add a panel and panel size so that only a small portion of the UC design surface is visible (see note * below). The visible part of the design surface will be your colored frame, so set its "thickness" accordingly. Add the other controls that make up your UC in the panel.
Your control might look like this:

IMessageFilter UC. PreFilterMessage() UC UC BackColor , UC, , . BackColor Panel , , UC, ahs border.
, :
public partial class UserControl1 : UserControl, IMessageFilter
{
public UserControl1() {
InitializeComponent();
Application.AddMessageFilter(this);
}
public bool PreFilterMessage(ref Message m) {
if (!this.IsDisposed && this.ClientRectangle.Contains(this.PointToClient(Control.MousePosition))) {
this.BackColor = Color.Green;
} else {
this.BackColor = SystemColors.Control;
}
return false;
}
}
. , Panel BackColor, . , BackColor , (Control).