Tagged Questions
2
votes
2answers
225 views
Getting the cell clicked on in a TGridPanel
I have a TGridPanel on a form and wish to add a control to a specific "cell" that is clicked on.
I can get the point easily enough:
procedure TForm1.GridPanel1DblClick(Sender: TObject);
var
P : ...
1
vote
2answers
666 views
Finding out position of a control inside TGridPanel
How I can find out the position (row and column index) of controls inside TGridPanel? I'd like to use common OnClick event for number of buttons and need to know the X,Y position of the button.
I'm ...