data giridview
Data girid view colum1 column2 cloumn3.... how to image add into the columns..
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Farhan ShariffPosted Sep 2, 2014, 5:43 AM
using System.Data;
using System.Windows.Forms;
using System.Data.SqlClient;
using System.Drawing;
namespace WindowsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
DataGridViewImageColumn column1 = new DataGridViewImageColumn();
Image image = Image.FromFile("Image Path");
column1.Image = image;
dataGridView1.Columns.Add(column1);
column1.HeaderText = "Image";
column1.Name = "img";
}
}
}
Raj SonuPosted Sep 2, 2014, 3:45 AM
using System; using System.Data; using System.Windows.Forms; using System.Data.SqlClient; using System.Drawing; namespace WindowsApplication1 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { dataGridView1.ColumnCount = 3; dataGridView1.Columns[0].Name = "Product ID"; dataGridView1.Columns[1].Name = "Product Name"; dataGridView1.Columns[2].Name = "Product Price"; string[] row = new string[] { "1", "Product 1", "1000" }; dataGridView1.Rows.Add(row); row = new string[] { "2", "Product 2", "2000" }; dataGridView1.Rows.Add(row); row = new string[] { "3", "Product 3", "3000" }; dataGridView1.Rows.Add(row); row = new string[] { "4", "Product 4", "4000" }; dataGridView1.Rows.Add(row); DataGridViewImageColumn img = new DataGridViewImageColumn(); Image image = Image.FromFile("Image Path"); img.Image = image; dataGridView1.Columns.Add(img); img.HeaderText = "Image"; img.Name = "img"; } } }