Displaying custom icon for custom control?

2020-02-26 07:17发布

问题:

In visual studio when you create a custom control you get this ugly little purple gear thing for an icon of your control instead of a custom control .

So how can I change the icon for my control?

回答1:

Use the ToolboxBitmap attribute on the class.



回答2:

  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