BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
this.gridDataBoundGrid1.Model.QueryColWidth += new GridRowColSizeEventHandler(grid_QueryColWidth); private void grid_QueryColWidth(object sender, GridRowColSizeEventArgs e) { if(e.Index == this.gridDataBoundGrid1.Model.ColCount) { e.Size = this.gridDataBoundGrid1.ClientSize.Width - this.gridDataBoundGrid1.Model.ColWidths.GetTotal(0, this.gridDataBoundGrid1.Model.ColCount-1); e.Handled = true; } }
this.gridControl1.Model.Options.DisplayEmptyRows = true;
Or, you can use the code above (with the right column switch for the last row and ColWidths switched to RowHeights to have a single big row at the bottom.