delphi - Show the window shadow when using VCL styles -


is there way show window shadow, per normal windows 7 forms, when using vcl style?

i understand bitmap , settings in style replaces form borders, isn't shadow sort of alpha blend / aero thing outside area affected style?

adding cs_dropshadow windowclass.style seems have no effect.

using cs_dropshadow style works fine

type   tmyform = class(tform)   protected     procedure createparams(var params: tcreateparams); override;   end;  procedure tmyform.createparams(var params: tcreateparams); begin   inherited;   params     windowclass.style := windowclass.style or cs_dropshadow; end; 

enter image description here


Comments

Popular posts from this blog

java - JavaFX 2 slider labelFormatter not being used -

Detect support for Shoutcast ICY MP3 without navigator.userAgent in Firefox? -

web - SVG not rendering properly in Firefox -