I have a toolstripbutton into my toolstrip, and I wish remove the orange lighting when a mouse is hover, because I change the picture of the button dynamically..
How can I do this?
I have a toolstripbutton into my toolstrip, and I wish remove the orange lighting when a mouse is hover, because I change the picture of the button dynamically..
How can I do this?
Your English is impeccably bad so ill try to interpret as best i can.
I'm assuming you wish to change the image of a toolstripbutton once it's been clicked. This is quite simple. All you have to do is create an onClick action for the button, then change its icon/image attribute through code within the onClick action function.
$(document).ready(function(){
$('enter your element or class here').css("src", "path to image");
})