c# adding images to a datagridview data source

390 Views Asked by At

I have this query which adds peoples email addresses (Friends) but I would like it so that every friend has an avatar so it would look like this:

[Avatar] - Email address

code:

private void loadData()
{
    var query = from o in Globals.DB.Friends
                where o.UserEmail == Properties.Settings.Default.Email
                select new
                {
                    FirstName = o.FirstName,
                    LastName = o.LastName,
                    Email = o.Email,
                    Display = string.Format("{0} {1} - ({2})", o.FirstName, o.LastName, o.Email)
                };
    dataGridView1.DataSource = query.ToList();
}

How would I go about doing that? Because ill have to make a DataGridViewImageCell right?

So something like this?

private void loadData()
{
    DataGridViewImageCell Avatar = new DataGridViewImageCell();

    var query = from o in Globals.DB.Friends
                where o.UserEmail == Properties.Settings.Default.Email
                select new
                {
                    Avatar = o.Avatar,
                    FirstName = o.FirstName,
                    LastName = o.LastName,
                    Email = o.Email,
                    Display = string.Format("{0} {1} {2} - ({3})", o.Avatar, o.FirstName, o.LastName, o.Email)
                };

    dataGridView1.DataSource = query.ToList();
}
1

There are 1 best solutions below

0
On

Please refer https://msdn.microsoft.com/en-us/library/aa479350.aspx. This article gives information using picture URL.

If picture stored in database as BLOB, please refer below detais. Display the image in Datagridview image control

byte[] bytes = (byte[])GetData("SELECT Data FROM tblFiles WHERE Id =" + id).Rows[0]["Data"];
    string base64String = Convert.ToBase64String(bytes, 0, bytes.Length);
    Image1.ImageUrl = "data:image/png;base64," + base64String;