SIGN UP MEMBER LOGIN:    
ARTICLE

Buton Viewer: View Images

Posted by Mahesh Chand Articles | Windows Forms C# February 27, 2001
Well, In .NET, the Image class is a wonderful class to view images. No matter what control you have, you just set the Image property of that control to an image and the control will display the image. Neat?
Reader Level:
Download Files:
 

Description:

You must be wondering what the hell is this ButtonViewer? Well, In .NET, the Image class is a wonderful class to view images. No matter what control you have, you just set the Image property of that control to an image and the control will display the image. Neat?

In this sample, the Browse button let you browse the the dir to pick an image (It won't display any thing else but an image, so don't try text or other files).



Source Code:

Setting Image property of a button displays an image.

protected void button1_Click_1 (object sender, System.EventArgs e)
{
OpenFileDialog fdlg =
new OpenFileDialog();
fdlg.Title = "C# Corner Open File Dialog" ;
fdlg.InitialDirectory = @"c:\" ;
fdlg.Filter = "All files (*.*)|*.*|All files (*.*)|*.*" ;
fdlg.FilterIndex = 2 ;
fdlg.RestoreDirectory =
true ;
if(fdlg.ShowDialog() == DialogResult.OK)
{
button2.Image = Image.FromFile(fdlg.FileName) ;
}
Invalidate();
}

Login to add your contents and source code to this article
share this article :
post comment
 
Become a Sponsor
PREMIUM SPONSORS
  • Get 2 Months Free of ASP.NET Hosting for Only $4.95/month! Receive FREE MS SQL and MySQL Databases Including ASP.NET 4/3.5, MVC 3.0, Silverlight 4, Windows 2008/IIS 7.0 Plus FREE IIS 7 Modules. Host UNLIMITED ASP.NET Web Sites - Click Here!
    The leading .NET charting control now features PDF, Flash and Silverlight export, visualization of large datasets and more. Deliver true charting functionality to your BI, Scorecard, Presentation or Scientific apps. Download evaluation now.
Become a Sponsor