Advertisement
Guest User

Untitled

a guest
Apr 18th, 2014
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. Effect:=TFillRGBEffect.Create(Self);
  2. Effect.Color:=$80FF0000;
  3. Effect.Parent:=SomeButton;
  4.  
  5. Button:=TColorButton.Create(Self);
  6. Button.Color:=$80FF0000;
  7. Text:=TText.Create(Button);
  8. Text.Parent:=Button;
  9. Text.Align:=TAlignLayout.alClient;
  10. Text.Text:='Hello';
  11. Text.HitTest:=false;
  12. Button.ClipChildren:=true;
  13. Button.Parent:=Self;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement