putting icon on a button

  • Thread starter Thread starter dwhittenburg
  • Start date Start date
D

dwhittenburg

I'm sure it's been answered before, and I did search the forums and google
for it...

I want to add an icon to a button control...How can I accomplsih this or is
there a better solution?

I'm currently using a picturebox and using the click event...but i'd love to
have the press/depress look to it rather than just the flat box...

Thanks
 
Have you looked at the OpenNETCF SDF? If contains a ButtonEx control with an
Image property.
 
It's a class library. You can install the binary version and just add
references to it to your project or you can install the source and compile
it yourself or make changes and compile it yourself. Read the info at
www.opennetcf.org...

Paul T.
 
Go here (http://www.opennetcf.org/sdf), download the binary installation
package, close any open instances of VS.Net, run the msi file to install
V1.2 of the SDF, open or create a device project, and you should see an
OpenNETCF tab in the ToolBox. At this point, the ButtonEx control may be
added to your Form, from the OpenNETCF tab, through drag and drop. The SDF
source is available should you only want the ButtonEx implementation code.
 
Back
Top