One way you could accomplish this is to use the Paint() event to check the rows and if there are none, then write your message:
Collapse
private void dataGridView1_Paint ( object sender, PaintEventArgs e )
{
DataGridView sndr = ( DataGridView )sender;
if ( sndr.Rows.Count == 0 ) // <-- if there are no rows in the DataGridView when it paints, then it will create your message
{
using ( Graphics grfx = e.Graphics )
{
// create a white rectangle so text will be easily readable
grfx.FillRectangle ( Brushes.White, new Rectangle ( new Point (), new Size ( sndr.Width, 25 ) ) );
// write text on top of the white rectangle just created
grfx.DrawString ( "No data returned", new Font ( "Arial", 12 ), Brushes.Black, new PointF ( 3, 3 ) );
}
}
}
Thanks JOAT-MON for accepted solution.
Thanks,
Imdadhusen
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…