随机输出图片框c#

时间:2013-05-11 18:00:35

标签: c# winforms image random picturebox

我正在使用Winform,我有这个图片框。我有52个不同的图像,只有1个图像将在这个特定的图片框中显示。我不确定如何做到这一点,如果没有结束52 if语句。任何人都可以帮我解决这个问题,因为我在编程方面仍然有点新鲜:)

我在c#中编程

谢谢! :d

2 个答案:

答案 0 :(得分:2)

小例子:

// Controls:
// pictureBox1
// Dock: Fill
// SizeMode: StretchImage
// timer1

using System;
using System.Collections.Generic;
using System.IO;
using System.Windows.Forms;
using System.Linq;

namespace RandomImg
{
    public partial class Form1 : Form
    {
        // List of files to show 
        private List<string> Files;

        public Form1()
        {
            InitializeComponent();
        }

        // StartUp 
        private void Form1_Load(object sender, EventArgs args)
        {
            // basic settings.
            var ext = new List<string> {".jpg", ".gif", ".png"};

            // we use same directory where program is.
            string targetDirectory = Directory.GetCurrentDirectory();

            // Here we create our list of files
            // New list
            // Use GetFiles to getfilenames
            // Filter unwanted stuff away (like our program)
            Files = new List<string>
                (Directory.GetFiles(targetDirectory, "*.*", SearchOption.TopDirectoryOnly)
                .Where(s => ext.Any(e => s.EndsWith(e))));

            // Create timer to call timer1_Tick every 3 seconds.
            timer1 = new System.Windows.Forms.Timer();
            timer1.Tick += new EventHandler(timer1_Tick);
            timer1.Interval = 3000; // 3 seconds
            timer1.Start();

            // Show first picture so we dont need wait 3 secs.
            ChangePicture();
        }

        private void timer1_Tick(object sender, EventArgs e)
        {
            // Time to get new one.
            ChangePicture();
        }

        private void ChangePicture()
        {
            // Do we have pictures in list?
            if (Files.Count > 0)
            {
                // OK lets grab first one
                string File = Files.First();
                // Load it
                pictureBox1.Load(File);
                // Remove file from list
                Files.RemoveAt(0);
            }
            else
            {
                // Out of pictures, stopping timer
                // and wait god todo someting.
                timer1.Stop();
            }
        }
    }
}

答案 1 :(得分:1)

第一步是制作一些存储所有图像的列表。您可以选择图像列表或路径列表。

如果您正在使用图片路线,则可以使用List<Image> images = new List<Image>();创建图片列表,并为每个images.Add(image);添加image每张图片。

如果您正在使用路径路径,则可以使用List<String> paths = new List<String>();创建路径列表,并使用paths.Add(path);为每个path添加每个图像。

然后,当您将图片框设置为随机图像时,您可以生成一个随机数并从列表中选择一个。

图片:

Random random = new Random();
pictureBox1.Image = images[random.Next(0, images.Count - 1)];

路径:

Random random = new Random();
pictureBox1.ImageLocation = paths[random.Next(0, images.Count - 1)];

正如Tuukka所说,使用路径是一个更好的想法(内存使用方式),除非您已动态创建图像,或者由于某些其他原因已经拥有图像。