首页

源码搜藏网

首页 > 开发教程 > .net教程 >

在C#中如何把数据表中的图片绑定到WinForms图像列表

创建时间:2016-06-01 09:23  

介绍

这个技巧将帮助您获取图像,并将其填充到ImageList中并显示图像逐一PictureBox中使用C#在Windows窗体。

背景

存储图像到SQL Server 2008 R2的。

使用代码

创建使用C#在winform一个新项目。

添加新的Winform。现在添加一个图片框图像列表,并定时以这种形式。

我在窗体加载获取图像。

private void fileUploadToolStripMenuItem_Click(object sender, EventArgs e)
{
            th.Start();
}

timer1_Tick()

int i = 0;
private void timer1_Tick(object sender, EventArgs e)
{
    i++;
    imageList1 = FetchAllImages();
    int imgCount = imageList1.Images.Count;
    if (i % 2 != 0)
    {
        if (i < imgCount)
        {
            pictureBox1.Image = imageList1.Images[i];
        }
        else
        {
            i = 0;
        }
        Thread.Sleep(500);
    }
    else
    {
        if (i < imgCount)
        {
            pictureBox1.Image = imageList1.Images[i];
        }
        else
        {
            i = 0;
        }
        Thread.Sleep(500);
    }
}

FetchAllImages

private ImageList FetchAllImages()
{
    ImageList imglist = new ImageList();
    string qry = "Select * from tbl_ScreenImages";
    SqlCommand cmd = new SqlCommand(qry, conn);
    SqlDataAdapter da = new SqlDataAdapter(cmd);
    DataTable dt = new DataTable();
    da.Fill(dt);
    foreach(DataRow dr in dt.Rows)
    {
        byte[] arr = (byte[])dr["imgNps"];
        MemoryStream ms = new MemoryStream(arr);
        imglist.Images.Add(Image.FromStream(ms));
    }

    return imglist;
}

编程快乐!

上一篇:如何测试客户端工作中的Web API
下一篇:在RichTextBox中实现分页

相关内容

热门推荐