I have a button and I want image (.ico file) and text to exist on it. My problem is that I want button\'s height to be small, but I can\'t manage to \"shrink\" the image as much
If you have the Image with size 16*16 then set these Button properties at design time. 1) TextImageRelation - ImageBeforeText 2) TextAlign - MiddleRight 3) ImageAlign - MiddleLeft 4) Set the
I think if you use the Paint event of the Button you can draw any image in any size that you want. if it isn't possible to re-size the image you can do that in this way.
If you are using DevExpress Simple Button, you should set BackgroundImageLayout = ImageLayout.Zoom and set backcolor of button to Transparent (from Appereance->Backcolor)
ImageList imageList = new ImageList();
imageList.ImageSize = new Size(30, 30); // specify size you want
Try buttonname.BackgroundImageLayout = ImageLayout.Stretch;
or change this property in designer.
My solution was to use an ImageList control. You can define the size the images are to be displayed (e.g. I set the ImgageList ImageSize property to 16x16) and then set the button.ImageList and ImageIndex properties instead of the Image property.