unit TestUnit;
interface
uses
Winapi.Windows,
Winapi.Messages, System.SysUtils, System.Variants, System.Classes,
Vcl.Graphics,
Vcl.Controls,
Vcl.Forms,
Vcl.Dialogs,
Vcl.StdCtrls,
Vcl.Grids;
type
TForm1 =
class(TForm)
StringGrid1: TStringGrid;
Button1: TButton;
procedure FormCreate(Sender: TObject);
procedure StringGrid1SelectCell(Sender: TObject; ACol, ARow: Integer;
var CanSelect: Boolean);
private
{ Private-Deklarationen }
public
{ Public-Deklarationen }
end;
var
Form1: TForm1;
implementation
var
XPos,
YPos: Integer;
ZellInhalt:
String;
{$R *.dfm}
procedure TForm1.FormCreate(Sender: TObject);
begin
StringGrid1.Cells[0,0]:='
Spalte 1';
StringGrid1.Cells[1,0]:='
Spalte 2';
StringGrid1.Cells[2,0]:='
Spalte 3';
StringGrid1.Cells[0, 1] := '
Apfel';
StringGrid1.Cells[1, 1] := '
Birne';
StringGrid1.Cells[2, 1] := '
Pflaume';
StringGrid1.Cells[0, 2] := '
Erbse';
StringGrid1.Cells[1, 2] := '
Wurzeln';
StringGrid1.Cells[2, 2] := '
Kartoffel';
StringGrid1.Cells[0, 3] := '
Fleisch';
StringGrid1.Cells[1, 3] := '
Fisch';
StringGrid1.Cells[2, 3] := '
Wild';
StringGrid1.Cells[0, 4] := '
Vorspeise';
StringGrid1.Cells[1, 4] := '
Hauptspeise';
StringGrid1.Cells[2, 4] := '
Nachtisch';
end;
procedure TForm1.StringGrid1SelectCell(Sender: TObject; ACol, ARow: Integer;
var CanSelect: Boolean);
begin
YPos := StringGrid1.Row +1;
{+1 wegen der FixedRow}
XPos := StringGrid1.Col;
ZellInhalt := StringGrid1.Cells[XPos, YPos];
Button1.Caption := IntToStr(YPos) + '
/ ' +IntToStr(XPos) + '
/ ' +ZellInhalt;
Button1.Refresh;
end;
end.