WIN32 transparent static of API programming

Source: Internet
Author: User

CreateWindow can create a STAITC directly, but this static is opaque, if we set the window background to Gray_brush, then static will obviously have a white background, generally this is certainly very difficult to see.

You can set a ws_ex_transparent extension property for static, and then intercept the wm_ctlcolorstatic message in the message callback function, dealing with textcolor and Bkmode, which is the text color and background mode:

To set extended properties:

1 SetWindowLong (hstatic,gwl_exstyle,ws_ex_transparent);

Handling Wm_ctlcolorstatic Messages

1  Case wm_ctlcolorstatic: 2         HDC = (hdc) WParam; 3         SetTextColor (hdc, RGB (000)); 4         SetBkMode (hdc, TRANSPARENT); 5         return (LRESULT) Getstockobject (Null_brush);

This allows the static control to be transparent.

WIN32 transparent static of API programming

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.