In case you want to have a custom image for your control in the Visual Studio toolbox, you can do this by adding the following directive to your user control:
namespace CustomControlsLibrary
{
[System.Drawing.ToolboxBitmap(@"c:\CustomControl\Resources\toolbox.bmp")]
public class CustomControl : Control, INamingContainer
{ ….