Fmx Search Edit

(using 1.5.0.1)

- how can I change the rounded corners to squared ones?

- Show Clear does not change anything (should show the X button for clear I believe)

Thanks

Hi, 


You can remove the corners with the following code in the OnApplyStyleLookup:

procedure TForm1.TMSFMXSearchEdit1ApplyStyleLookup(Sender: TObject);
begin
  TMSFMXSearchEdit1.GetBackGround.Corners := [];
end;

The ShowClear property, will only show the clear button if the Text is not empty. It only makes sense to clear the text if its not empty. There is currently no way to show the clear button permanently.

Kind Regards, 
Pieter