Group: Forum Members
Last Active: 3 Years Ago
Posts: 59,
Visits: 77
|
On the pan and zoom control (ver. 10.6.23.12) the +,- zoom button images have a black border. My boss doesn't like that. Is there an easy way to turn that off?
Thanks in advance, Jason
|
Group: Forum Members
Last Active: 1 days ago @ 1:54 AM
Posts: 3,054,
Visits: 4,009
|
Hi, You can change the images of the zoom in and zoom out buttons of the pan and zoom control using the following code: NButton zoomOutButton = (NButton)panAndZoom.Controls[1].Controls[0].Controls[1]; zoomOutButton.Image = zoomOutImage;
NButton zoomInButton = (NButton)panAndZoom.Controls[1].Controls[0].Controls[2]; zoomInButton.Image = zoomInImage;
Best Regards, Nevron Support Team
|