1
Answer

ToolBarButton Image Size

Administrator

Administrator

21y
1.5k
1
Hello all, I have several ToolBars with ToolBarButtons. I would like to display images or icons on these ToolBarButtons. Getting the image on the button is not the issue. The issue is actually getting to see what the image is. The ToolBarButton appraently sizes any image to 16x16. When you view this at a screen resolution of 1280x1024, it is an indistiguishable, very small blob. Short of disassembling the Core, does anyone have a suggestion on how display a decently sized image on a ToolBarButton? Thank you in advance for your assistance.
Answers (1)
0
Santhosh Kumar Jayaraman

Santhosh Kumar Jayaraman

NA 9.9k 2.3m 12y
0
Priyank Khare

Priyank Khare

NA 306 66.8k 12y
thankx for reply but will it be work in case if i will display the total price....
because i think it will display an error during addition of price like "usd 1231 + usd 2465"

what will i do to resolve this problem.?
0
Santhosh Kumar Jayaraman

Santhosh Kumar Jayaraman

NA 9.9k 2.3m 12y
try this

before binding the datatable to gridview.
foreach(DataRow dr in datatable1)
{
dr["price"]=ConfigurationSettings.AppSettings["Currency"] + dr["Price"].ToString();
}

and in web.config.

<AppSettings>
<add key="Currency" value ="USD"/>
</AppSettings>