i used simple mousehover. and when this event happens then i change the
imagelist of the whole tool bar... should not b this... and if i keep
the button at the same place then bigger problem... as the mouse hover
keeps on changing the image from hot to regular and vice versa..
code:
private void toolbarMain_MouseHover(object sender, System.EventArgs e)
{
if (toolbarMain.ImageList != imglstTbMainHot)
{
toolbarMain.ImageList = imglstTbMainHot;
}
else
{
toolbarMain.ImageList = imglstTBMain;
}
}
u can see in the code i am just switching the image list... not a good
way atall... there would b something done and i don't wana reinvent the
wheel.