📜  图片框的下一步按钮 c# 代码示例

📅  最后修改于: 2022-03-11 14:48:52.399000             🧑  作者: Mango

代码示例1
int count = +1;
        private void BtnNext_Click(object sender, EventArgs e)
        {
           if(count<7)
           {
               count++;
           }
            pictureBox1.Image=imageList1.Images[count];
           
        }
//with out using openfiledialog