سلام.
چی بود این پروژه ناسا بود؟! 
برای اضافه کردن تصاویر به کالکشن:
private void Form1_Load(object sender, EventArgs e)
{
string path = @"F:\Code Library Icons";
//string folder = Path.GetDirectoryName(path);
string[] Files = Directory.GetFiles(path, "*.png");
this.AllImages.AddRange(Files);
Files = Directory.GetFiles(path, "*.jpg");
this.AllImages.AddRange(Files);
this.ImageCounter = -1;
btnNext_Click(sender, e);
{
NextButton Statment:
private void btnNext_Click(object sender, EventArgs e)
{
if (this.ImageCounter < this.AllImages.Count - 1)
{
this.ImageCounter++;
this.pictureBox1.Image = Image.FromFile(this.AllImages[this.ImageCounter]);
}
this.Previousbutton.Enabled = (bool)(this.ImageCounter > 0);
this.Nextbutton.Enabled = (bool)(this.ImageCounter < this.AllImages.Count - 1);
}
PreviousButton Statment:
private void btnBack_Click(object sender, EventArgs e)
{
if (this.ImageCounter > 0)
{
this.ImageCounter--;
this.pictureBox1.Image = Image.FromFile(this.AllImages[this.ImageCounter]);
}
this.Previousbutton.Enabled = (bool)(this.ImageCounter > 0);
this.Nextbutton.Enabled = (bool)(this.ImageCounter < this.AllImages.Count - 1);
}
Untitled.jpg