To make a tool available from your tool palette's tray, you provide a bitmap to serve as its icon. The AcadToolImpl class uses the image name argument passed to its template constructor to associate the bitmap with your tool. Your image name argument's value must match the ID property of your bitmap resource. Also, you must type double quotes around this resource ID in your bitmap resource's property list. If you forget the quotes, Visual Studio assigns an integer value to the resource ID. This prevents the bitmap from appearing on your palette.
Because we passed the bitmap resource name, IDB_TOOL1, as the final argument of the AcadToolImpl template constructor, the framework uses this resource as the icon for dynamically created tools. You can also override this bitmap setting when you create tools within your code. This override is discussed in the section Creating an AutoCAD Command.