Hello,
We're doing our own datagrid based on the System.windows. forms.datagrid
control, and are having some problems with horizontal scrolling.
In general, we construct our datagrid adding a tablestyle and
gridcolumnstyle s to that tablestyle. If we have invisible columns, we add
the gridcolumnstyle with Width = 0 (couldn't find any other way to do it,
because there is no Visible property available...).
When we change column with the TAB key, it doesn't work right if the
invisible columns are in the visible area of the grid. Looking at the code
of the EnsureVisible method of the datagrid, it's something like this:
-----------------------------------------------------------
private void EnsureVisible(i nt row, int col) {
int local0;
if (row < this.firstVisib leRow || row >= this.firstVisib leRow +
this.numTotally VisibleRows) {
local0 = this.ComputeDel taRows(row);
this.ScrollDown (local0);
}
if (this.firstVisi bleCol != 0 || this.numVisible Cols != 0 ||
this.lastTotall yVisibleCol != -1)
goto i-1;
return;
do {
this.ScrollToCo lumn(col);
} while (col < this.firstVisib leCol || col == this.firstVisib leCol &&
this.negOffset != 0 || this.lastTotall yVisibleCol == -1 && col >
this.firstVisib leCol || this.lastTotall yVisibleCol > -1 && col >
this.lastTotall yVisibleCol);
}
-----------------------------------------------------------
The problem is that, even if we can't see, for example, the column 0 because
it has its Width=0, the datagrid keeps saying that FirtsVisibleCol =0, so it
doesn't scroll right when it should. I guess the same is happening with the
rest of the private properties (numVisibleCols and lastTotallyVisi bleCol)
Anybody has any ideas of how we can solve this problem? Is there a way to
tell the datagrid that Column0 is actually invisible?
Right now, the only way I can think of doing it is controlling columns with
Width=0 and scrolling the grid "by hand"...
Thank You very much,
Igor Mendizabal
We're doing our own datagrid based on the System.windows. forms.datagrid
control, and are having some problems with horizontal scrolling.
In general, we construct our datagrid adding a tablestyle and
gridcolumnstyle s to that tablestyle. If we have invisible columns, we add
the gridcolumnstyle with Width = 0 (couldn't find any other way to do it,
because there is no Visible property available...).
When we change column with the TAB key, it doesn't work right if the
invisible columns are in the visible area of the grid. Looking at the code
of the EnsureVisible method of the datagrid, it's something like this:
-----------------------------------------------------------
private void EnsureVisible(i nt row, int col) {
int local0;
if (row < this.firstVisib leRow || row >= this.firstVisib leRow +
this.numTotally VisibleRows) {
local0 = this.ComputeDel taRows(row);
this.ScrollDown (local0);
}
if (this.firstVisi bleCol != 0 || this.numVisible Cols != 0 ||
this.lastTotall yVisibleCol != -1)
goto i-1;
return;
do {
this.ScrollToCo lumn(col);
} while (col < this.firstVisib leCol || col == this.firstVisib leCol &&
this.negOffset != 0 || this.lastTotall yVisibleCol == -1 && col >
this.firstVisib leCol || this.lastTotall yVisibleCol > -1 && col >
this.lastTotall yVisibleCol);
}
-----------------------------------------------------------
The problem is that, even if we can't see, for example, the column 0 because
it has its Width=0, the datagrid keeps saying that FirtsVisibleCol =0, so it
doesn't scroll right when it should. I guess the same is happening with the
rest of the private properties (numVisibleCols and lastTotallyVisi bleCol)
Anybody has any ideas of how we can solve this problem? Is there a way to
tell the datagrid that Column0 is actually invisible?
Right now, the only way I can think of doing it is controlling columns with
Width=0 and scrolling the grid "by hand"...
Thank You very much,
Igor Mendizabal
Comment