i have a datagridview which is coding in c#.net
My requirement is, if I select any DataGridView cell the cell content should be visible larger as a popup, or I want to view the datagridview cell larger or fitted one when move my cursor to particular cell.
Loading
Munesh SharmaPosted Oct 9, 2014, 6:29 AM
{
if (e.ColumnIndex > -1 && e.RowIndex > -1)
{
if (dataGridView1[e.ColumnIndex, e.RowIndex].Value != null)
{
label1.Text = dataGridView1[e.ColumnIndex, e.RowIndex].Value.ToString();
}
}
}
sowjanya bantupalliPosted Oct 9, 2014, 6:50 AM
but according your code text displays on lable and image not display.but my requirement is when i place mouse pointer on particular cell that cell content should be displayed in big size........thank you