New Product Launch - BoldDesk !
Introducing help desk ticketing software.
New Product LaunchBoldDesk: Help desk ticketing software starts at $10 for 3 agents.
Try it for free.
this.gridControl1.Model.Options.FloatCellsMode = GridFloatCellsMode.BeforeDisplayCalculation;
Attached is a little sample.
private void Form1_Load(object sender, EventArgs e) { this.gridDataBoundGrid1.SmoothControlResize = false; } private void gridDataBoundGrid1_Paint(object sender, PaintEventArgs e) { // test for empty somehow... //if(empty) { RectangleF rect = this.gridDataBoundGrid1.Bounds; rect = new RectangleF(rect.Left + 100, rect.Top + 100, rect.Width - 100, rect.Height - 100); e.Graphics.DrawString("Choose from above...", this.gridDataBoundGrid1.Font, Brushes.Blue, rect ); } }