Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

button Previous for picturebox c#

 private void BtnPervious_Click(object sender, EventArgs e)
        {
            if(count>0||count==7)
            {
                count--;
            }
            pictureBox1.Image = imageList1.Images[count];
        }
//with out openfiledialog
 
PREVIOUS NEXT
Tagged: #button #Previous #picturebox
ADD COMMENT
Topic
Name
3+9 =