Hi,
Enabled = False makes scrollbars disabled on grid, any easy way to make gid readonly/disabled look but with scrollbars enabled?
Thanks!
HOWTO:How can I make a grid or a column, row, or cell in the UltraWinGrid disabled or read-only?
Mike but that will not make grid disabled look as Enabled = False.
Well, as you noticed, you can't disable the whole grid and still use the scrollbars. So that leaves you with the option of disabling parts of the grid, instead.
So how about this:
foreach (UltraGridBand band in this.ultraGrid1.DisplayLayout.Bands) { foreach (UltraGridColumn column in band.Columns) { column.CellActivation = Activation.Disabled; } }