Displaying custom icon for custom control?

Use the ToolboxBitmap attribute on the class.


  1. Put your icon (for exemple "icon.bmp" 16x16 pixels) on the root folder of your custom control project
  2. Include this line just before your control class : [ToolboxBitmap(typeof(yourControl), "yourControl.bmp")]

Here are further steps you need to take care of:-

  1. Verify your bitmap has the following properties : Height of 16 pixel Width of 16 pixel Bitmap saved as 16 colors bmp file
  2. Give it the same name as the class of your custom control (ie : yourControl.bmp)
  3. Place it in the same directory, and then make it an embedded resource of your assembly.
  4. To enable the bitmap as an embedded resource, right-click the bitmap file and select the Properties menu item. From the Properties page, set the Build Action to Embedded Resource.
  5. So when you will place your control in a page, the Toolbox will search the assembly manifest for an embedded bitmap with the same qualified name as the control, here is the reason why the bitmap must have the same name as the class of your control.

For further discussion on this you can refer to this