How to put an image (BitMap) into a statusBar?
I was trying with:
1.
statusBar1.Text = Properties.Resources.MyPucture;
2.
Bitmap myPic = new Bitmap(Properties.Resources.MyPucture);
MethodToShowStatusBarImage()
{
statusBar1.Text = myPic;
}
but it is not working. Any clues how to salve this issue?
And besides, I have found a lot of example does with BitMapImage control, but I don`t know how to get it. I mean I can`t reach it, becuase I do know have the right reference (System.Windows.Media.Imaging - I can not find it between all those references, anyone know how to get it?).
I am using VS 2008 on Win 7.
Maybe is the problem I do not have installed .NET FrameWork 3.0, and I can not install it. Win 7 doesnt let me.
When I try to install it it throws a message that I have to turn it on in Control Panel/Programs/Turn Windows Features On/off.
And there I can not find .net FrameWork 3.0.