Delphi XE4 FireMonkey TMemo Transparent? (iOS) -


is there way make tmemo transparent in delphi/ios/firemonkey?

i don't see way edit styles myself when selecting + right-clicking memo control...

try removing memo's background on applying style event.

procedure tform1.memo1applystylelookup(sender: tobject); var   bckobject: tfmxobject; begin   bckobject := memo1.findstyleresource('background');   if assigned(bckobject) , (bckobject tsubimage)   begin     tsubimage(bckobject).source := nil;   end; end; 

Comments