SmartClient Version: v8.2p_2012-04-26/PowerEdition Deployment (built 2012-04-26)
I'm not sure why, but setting icon width/height in the following code snip does not work.
The images I'm using are 48x48 pix.
I'm not sure why, but setting icon width/height in the following code snip does not work.
Code:
ButtonItem button = new ButtonItem();
button.setWidth(50);
button.setHeight(50);
button.setTitle("");
button.setPrompt("Stuff");
button.setIcon("/path/to/my/image.png");
button.setIconWidth(48);
button.setIconHeight(48);
Comment