5,696,038 members and growing! (14,546 online)
Email Password   helpLost your password?
Languages » C++ / CLI » General     Intermediate

Using the ToolboxBitmap attribute from Managed C++

By Noogle

The easy way to embed a managed resource for use with a component's toolbox bitmap.
C++/CLI, Windows, .NET 1.0, .NET 1.1, .NET, Visual Studio, Dev

Posted: 6 Nov 2003
Updated: 6 Nov 2003
Views: 48,145
Bookmarked: 6 times
Announcements
Loading...



Search    
Advanced Search
Sitemap
10 votes for this Article.
Popularity: 4.20 Rating: 4.20 out of 5
3 votes, 30.0%
1
0 votes, 0.0%
2
0 votes, 0.0%
3
0 votes, 0.0%
4
7 votes, 70.0%
5

Introduction

This is a very brief note on associating a bitmap image with a component or user control from a Managed C++ project. The C# technique is more straightforward and is already documented in the standard help. Doing this in C++ is initially a pain, because there are few (if any) sample projects around, that do this. It took me quite a while to find a post on one of the newsgroups that provided the solution. Once you know what to look for, you'll find the right posts, so the idea of this article is just to provide a quick hit for people searching on ToolboxBitmap.

Aim

Write a Managed C++ component (i.e. derived from System::ComponentModel::Component) or some variation of user control that has a customized toolbox bitmap associated with it. The bitmap should be embedded as a resource (not specified in a run-time distributed file).

Steps

  1. Write the component and design a 16*16 bitmap.

  2. Add the bitmap

    The bitmap must be added as an embedded resource. (Various posts on the newsgroups describe using .resx files - I couldn't get this to work).

    1. Make sure the 16*16 bitmap is in the project directory.
    2. Make sure the bitmap is named as follows:
      Namespace.ClassName.bmp

      The .NET framework relies on this naming convention to find your resource when displaying the bitmap on the toolbox.

    3. Add the bitmap to the project as follows:
      1. Go to the project settings property pages.
      2. Go to the Linker\Input settings page.
      3. Select "Embed Managed Resource File" and enter the name of your bitmap.
  3. Associate the bitmap with the class

    You need to add ToolboxBitmap attribute to your class. For example, if you have the following class:

    __gc public class Port : public System:: System::ComponentModel::Component

    ...add the attribute as follows:

    [ToolboxBitmap(__typeof(Port))]
    __gc public class Port : public System:: System::ComponentModel::Component

    You must also forward declare the class, otherwise the compiler will fail. E.g.:

    __gc public class Port;
    [ToolboxBitmap(__typeof(Port))]
    __gc public class Port : public System:: System::ComponentModel::Component

    The ToolboxBitmap attribute resides in the System::Drawing namespace, so you may need to add a using clause at the top of the file. E.g.:

    using namespace System::Drawing;

    That's it. You can now build the project.

  4. Adding to the toolbox

    Once the project is built, close the solution. Then, on the Toolbox right-click and select Add/Remove Items. On the .NET Framework Components page, select Browse and find your DLL assembly. Select it, and close the Customize Toolbox dialog. A greyed-out image of your component will appear on the toolbox list. If a greyed out 'cog' is shown, it means that the framework has failed to find your image (see diagnostics below). Otherwise, your component is ready for dragging-and-dropping.

  5. Diagnostics

    If you find that the icon does not show correctly on the toolbar, there is a quick way to determine if it is visible from your assembly.

    1. Run ILDASM (on my machine this is: C:\Program Files\Microsoft Visual Studio .NET 2003\SDK\v1.1\Bin\ildasm.exe).
    2. From the menu, open your assembly.
    3. Double-click the MANIFEST item - a new window will pop-up.
    4. You should now try to find your bitmap. For example, one of mine appears as:
      .mresource public CDS.ParallelPortDrv.Port.bmp
      {
      }
    5. You will hopefully be able to determine what the problem is, from here. For example, if no bitmap resource is listed, it means that the bitmap was not correctly embedded as a managed resource. If the bitmap exists, you should be able to verify that the naming convention is correct. Remember that, all namespaces must be used followed by the class name, followed by ".bmp".

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Noogle


C#/C++ developer
Occupation: Web Developer
Location: United Kingdom United Kingdom

Other popular C++ / CLI articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 9 of 9 (Total in Forum: 9) (Refresh)FirstPrevNext
GeneralDesign-time and run-time separationmemberEdward Diener15:54 31 Oct '04  
GeneralSimpler MethodmemberLibertadrian17:33 25 Sep '04  
GeneralRe: Simpler Methodmemberossamaosos5:51 11 Jul '05  
GeneralRe: Simpler Methodmemberossamaosos6:02 11 Jul '05  
GeneralOne way to add a bitmap as an embedded resource.memberGeorge L. Jackson9:05 13 Nov '03  
GeneralRe: One way to add a bitmap as an embedded resource.memberLibertadrian17:39 25 Sep '04  
GeneralNooglememberNormski5:27 7 Nov '03  
GeneralRe: NooglememberNoogle10:57 7 Nov '03  
GeneralRe: NooglememberNormski22:43 7 Nov '03  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 6 Nov 2003
Editor: Smitha Vijayan
Copyright 2003 by Noogle
Everything else Copyright © CodeProject, 1999-2008
Web12 | Advertise on the Code Project