Automatisches Scrollen ans Ende

Hier werden Fragen zur Programmierung des ppsGrids...
Post Reply
cooter
Posts: 2
Joined: 16.04.2009, 16:12

Automatisches Scrollen ans Ende

Post by cooter »

Hallo,

ich suche nach einer Möglichkeit, nachdem ich eine neue Zeile an das Ende des Grid’s eingefügt habe an diese Stelle automatisch hinzuscrollen. Finde leider keine Funktion um dieses zu tun.
Die Scrollbar wird vom Grid automatisch erstellt.

torsten
Site Admin
Posts: 92
Joined: 02.05.2006, 09:04
Spamschutz: 10
Location: Bremen

Re: Automatisches Scrollen ans Ende

Post by torsten »

Hallo cooter
Siehe die Methoden "BottonRow" (bzw. TopRow, LeftCol und RightCol)
sowie "EnsureVisible".

Code: Select all

grid.AddRows(100);                                 // 100 Zeilen
grid.AddCols(100);                                 // ..in 100 Spalten

for(int idx=0;idx<100;idx++)                       // alle...
  grid[0,idx].Value=grid[idx,0].Value = idx;       // Spalten und Zeilen numerieren

grid.BottomRow = grid.Rows[49];                     // Zeile 50 unten anzeigen
grid.BottomRow.BackColorCell = Color.Red;           // die unterste Zeile rot färben
Gruß Torsten

Post Reply