TLabel OnMouseDown event not firing in Firemonkey

  

I’m trying to change a TLabel color when the user touches it, but it looks like the MouseDown event is not being fired.

procedure TForm_Master.tv_1Down(Sender: TObject;
Button: TMouseButton; Shift: TShiftState; X, Y: Single);
begin
tv_1.FontColor := TAlphaColors.Dodgerblue;
end;

What could possibly be going wrong?

Comments are closed.