Click here to Skip to main content
Licence 
First Posted 1 Nov 2007
Views 30,456
Downloads 813
Bookmarked 13 times

PictureBox Array in Visual Studio .NET

By | 1 Nov 2007 | Article
Visual Studio .NET not support Array of controls, I try to create PictureBox array

Introduction

In VB6 we can create many Controls (Label, TextBox, Button, PictureBox, …etc.) as an Array, but Visual Studio .NET does not support this work. I tried to create an Array of PictureBox controls in this article. My next article will be about creating an Array of Labels and Buttons.

Background

My article has two forms. The name of one is (frmThumb) and the name of other is (frmView). With the first form you can load all the images in any folder as thumbnails by clicking the button (Load images).

Screenshot - Image1.jpg

Then when you click any image you can view this image with its own size from the form (frmView).

Screenshot - Image2.jpg

The form (frmThumb) has:

  • One panel control (BackPanel) to hold images
  • The progress control (MyProgress) which works while images are loading.
  • Two buttons: one (btnLoad) to load images, the other (btnExit) to exit the application.

The form (frmView) has:

  • One pictureBox control (imgDisplay) to view the image you clicked, where I let the property SizeMode = AutoSize
  • A label (lblImageName) to view the name and full path of the image
  • A button (btnClose) to close the form and return to the form (frmThumb).

Using the Code

The important code is the code to create the Array:

//
// Function to add PictureBox controls, You can determine number of controls
//
private void AddControls(int cNumber) 
{ 
    // assign number of controls (cNumber): 
    imgArray = new System.Windows.Forms.PictureBox[cNumber]; 
    for (int i = 0; i < cNumber; i++) 
    { 
        // Initialize one variable 
        imgArray[i] = new System.Windows.Forms.PictureBox(); 
    } 
}

I create ClickImage event:

//
// The function ClickImage:
// 
private void ClickImage(Object sender, System.EventArgs e) 
{ 
    // On Click: load (ImageToShow) with (Tag) of the image, 
    // Tag of image is its name and path 
    ImageToShow = ((System.Windows.Forms.PictureBox) sender).Tag.ToString; 
    // then view this image on the form (frmView) 
    Thumbnail.frmView f = new Thumbnail.frmView(); 
    f.ShowDialog(); 
}

//
// Event of the image click:
// 
imgArray[i].Click += new System.EventHandler(ClickImage);

You can see the functions:

  • ImagesInFolder() to load images from any folder
  • ShowFolderImages() to view images as thumbnails and how write the tag of the image like this:
// 
// Write Tag = name and full path of image: 
// 
imgArray[i].Tag = imgName[i];

and how add images on the panel:

//
// add images to Panel: 
// 
this.BackPanel.Controls.Add(imgArray[i]);

Points of Interest

I learn how to create Array of Controls as labels and Buttons, we can create same as this article.

Remarks

Source files of this article and the folder for the images is:

..\ImageArray\bin\Debug\Images.

Last Words

I hope this article helps you to create an array of any control. I shall write another article about creating an array of Labels and Buttons.

If you have any ideas or if you find any problems please tell me. Just remember make it simple English because my English language is poor!

Thanks for Code Project and for all.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Mostafa Kaisoun



Egypt Egypt

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionThanks Pinmemberquangvinhits0:50 14 Sep '11  
AnswerRe: Thanks PinmemberMostafa Kaisoun1:36 14 Sep '11  
Generalthanks for the concept PinmemberMember 467520522:57 10 Jul '11  
GeneralRe: thanks for the concept PinmemberMostafa Kaisoun5:27 11 Jul '11  
QuestionGrammar PinmemberRi Qen-Sin16:45 1 Nov '07  
AnswerRe: Grammar PinmemberRi Qen-Sin4:38 3 Nov '07  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 1 Nov 2007
Article Copyright 2007 by Mostafa Kaisoun
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid