2008-11-12 13 views

Odpowiedz

3

Można użyć DataGrid

public Rectangle GetCellBounds(int row, int col); 

z

public event EventHandler CurrentCellChanged; 
public DataGridCell CurrentCell { get; set; } 

lub

public event MouseEventHandler MouseMove; 
public HitTestInfo HitTest(int x, int y); 

pokazać przycisk (lub innej kontroli) nad wybraną komórkę.

Pozdrawiam, Tamberg

Powiązane problemy