Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7027141
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T00:12:32+00:00 2026-05-28T00:12:32+00:00

I have a form and paint it with a gradient on a Paint event.

  • 0

I have a form and paint it with a gradient on a Paint event. Also I have frames on that form. I want that frames will be transparent to see the gradient of the form or to paint the frames with the gradient instead if transparency isn’t available.

The form and the frame mustn’t flicker 🙂

Ho to do it? Thanks.

Edited:

As I see, there are flickers for frame’s transparency. So the best solution for me now is to override TFrame1.PaintWindow(DC: HDC) and paint a background of the frame with a gradient.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T00:12:33+00:00Added an answer on May 28, 2026 at 12:12 am

    Here is a trick to get transparency in frames, as described here : how-to-make-delphi-tframe-background-transparent.

    type
      TMyFrame = class(TFrame)
        procedure CreateParams(var Params: TCreateParams);override;
        procedure PaintWindow(DC: HDC); override;
      public
        constructor Create(AOwner:TComponent);override;
      end;
    
    constructor TMyFrame.Create(AOwner: TComponent);
    begin
      inherited;
      Brush.Style := bsClear;
    end;
    
    procedure TMyFrame.CreateParams(var Params: TCreateParams);
    begin
      inherited;
      Params.ExStyle := Params.ExStyle or WS_EX_TRANSPARENT or WS_EX_COMPOSITED;
    end;
    
    procedure TMyFrame.PaintWindow(DC: HDC);
    begin
      // Do not remove this comment to keep transparancy
    end;
    

    Updated :

    David suggested adding WS_EX_COMPOSITED to the style to avoid flicker when resizing.
    This should be added to all controls.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm having trouble with a gradient drawing call. I have a Form that looks
I have code that will paint a ball when I click the mouse in
I have a usercontrol that displays a gradient of colors which, once created will
I have form that displays several keywords (standard set of choice lists that changes
I have form with few buttons and I want to know what button is
I currently have form that checks if a user has unsubmitted changes when they
I have a TableLayoutPanel that contains rows of labels. This control lives on form
I have a program that is essentially like a paint application. However, my program
I have been asked to write a GUI that will allow objects to be
I have a product that we wish to have a quote form for. the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.