Click here to Skip to main content
15,880,956 members
Articles / Desktop Programming / Windows Forms

Cool, Semi-transparent and Shaped Dialogs with Standard Controls for Windows 2000 and Above

Rate me:
Please Sign up or sign in to vote.
4.85/5 (95 votes)
28 Sep 2012CPOL3 min read 2.9M   32.8K   350   94
This article tries to find a way to show Windows standard controls on layered windows. Provides both Native MFC and WinForms source code.

Introduction

First, let me show you some screenshots captured from the demo program.

Image 1

SemiTranDlgWithCtrls/8.jpg

SemiTranDlgWithCtrls/3.jpg

The program demonstrates semi-transparent dialogs which are compatible with Windows 2000 and higher.

Background

Layered windows, supported from Windows NT 5.0, provide a way to create windows that have a complex shape with alpha blending effects. The major challenge is how to show standard controls on layered windows.

The following shows the mechanism:

SemiTranDlgWithCtrls/4.jpg

When the dialog is being created, a fake window is created by CreateWindowEx with the styles WS_EX_LAYERED, WS_EX_TRANSPARENT, and WS_EX_NOACTIVATE. The alpha value of the real window will be modified to 5 by SetLayeredWindowAttributes so that the real window is almost transparent.

The real window is in charge of processing user input events and Windows messages; the fake one is in charge of the presentation. The fake window is always kept the same size / position as the real one.

How do we show standard controls on the fake window? When the presentation needs to be refreshed, the background image is painted first. Then, all the child controls will be captured by sending the WM_PRINT message, and painted at the same position on the fake window. Especially, for EDIT controls, EditBox / Editable ComboBox / etc., we need to draw the caret by ourselves.

When should we refresh the presentation? We need to refresh the fake window when there is an update on the UI. In the demo, it hooks into all the child controls recursively, and changes the WNDPROC address by SetWindowLongPtr with the parameter GWLP_WNDPROC.

You can get more details by looking into the source code.

Using the Code in Native C++ / MFC

First Step

Copy all the files in /Src/*.* to your project.

Second Step

You need an image file to be the dialog background. You'd better choose PNG or TIFF which support the alpha channel. The image file can be embedded into a resource or placed on disk, judged by yourself.

Final Step

Replace the dialog base class from CDialog to CImgDialogBase.

C++
// Load from disk file
CDemo2Dlg::CDemo2Dlg(CWnd* pParent /*=NULL*/)
    : CImgDialogBase( CDemo2Dlg::IDD
    , CUtility::GetModulePath() + _T("background.png")
    , pParent
    )
{

}

// Or load from resource
CDemo3Dlg::CDemo3Dlg(CWnd* pParent /*=NULL*/)
    : CImgDialogBase(CDemo3Dlg::IDD
    , IDB_PNG_DLG2
    , _T("PNG")
    , AfxGetResourceHandle()
    , pParent
    )
{

}

Using the Code in WinForms/.NET

First Step

Copy files in the /Src/*.* directory to your project.

Second Step

You need an image file to be the dialog background. You'd better choose PNG or TIFF which support alpha channel.

Final Step

Replace the dialog base class from Form to ImageDlgBase.

C#
public partial class Form2 : CoolImageDlg.ImageDlgBase
{
    public Form2()
    {
        base.DlgBgImg = ImgDlgSample.Properties.Resources.DemoDlgBg2;
        //......
    }
}

Something Important

The dialog works in a way that if there is one pixel that needs to be updated, the whole window will be refreshed. Therefore, if the dialog is very large and complex, or has a lot of child controls, it may cause performance issues.

Some of the controls cannot work with WM_PRINT; in that case, the control won't display correctly. In other words, not all controls are supported.

The sample code uses the GDI+ helper class from Zoltan Csizmadia. For those who do not want to use GDIPlus.dll, CxImage is another choice.

Image 5

Most of the machines use 96 DPI as their monitor setting. For those machines which use an unusual DPI setting, please note the demo is not meant for such settings and the child controls will be misplaced. You need to add your own code to re-layout the child controls if you do need to support unusual DPIs.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Team Leader
China China
Jerry is from China. He was captivated by computer programming since 13 years old when first time played with Q-Basic.



  • Windows / Linux & C++
  • iOS & Obj-C
  • .Net & C#
  • Flex/Flash & ActionScript
  • HTML / CSS / Javascript
  • Gaming Server programming / video, audio processing / image & graphics


Contact: vcer(at)qq.com
Chinese Blog: http://blog.csdn.net/wangjia184

Comments and Discussions

 
GeneralTransparent controls Pin
Mickael124-Feb-10 21:10
Mickael124-Feb-10 21:10 
GeneralRe: Transparent controls Pin
Jerry.Wang8-Mar-10 16:37
Jerry.Wang8-Mar-10 16:37 
GeneralWM_PAINT Pin
dima_kdl7-Nov-09 5:22
dima_kdl7-Nov-09 5:22 
GeneralRe: WM_PAINT Pin
Jerry.Wang7-Nov-09 13:28
Jerry.Wang7-Nov-09 13:28 
Generalgood job,good boy! Pin
huangzongwu16-Oct-09 1:45
huangzongwu16-Oct-09 1:45 
GeneralCode is slow to execute Pin
Diamonddrake3-Sep-09 5:44
Diamonddrake3-Sep-09 5:44 
GeneralRe: Code is slow to execute Pin
D.K.Wang4-Sep-09 23:20
D.K.Wang4-Sep-09 23:20 
GeneralAnother Good Article, goto http://www.codeproject.com/KB/dialog/PerfectTranlucentDlg.aspx Pin
D.K.Wang2-Sep-09 4:11
D.K.Wang2-Sep-09 4:11 
GeneralRe: Another Good Article, goto http://www.codeproject.com/KB/dialog/PerfectTranlucentDlg.aspx Pin
Jerry.Wang3-Nov-09 8:30
Jerry.Wang3-Nov-09 8:30 
QuestionSDI/MDI Pin
Gwanho31-Aug-09 16:11
Gwanho31-Aug-09 16:11 
QuestionI got a problem of string conversion Pin
bluespeed00129-Jul-09 16:46
bluespeed00129-Jul-09 16:46 
AnswerRe: I got a problem of string conversion Pin
Jerry.Wang29-Jul-09 20:39
Jerry.Wang29-Jul-09 20:39 
GeneralRe: I got a problem of string conversion Pin
bluespeed00130-Jul-09 3:37
bluespeed00130-Jul-09 3:37 
GeneralGood Article Pin
zdlhm5-Jul-09 23:01
zdlhm5-Jul-09 23:01 
GeneralSupport for Property Page based dialog applications Pin
Member 45690375-Jul-09 20:33
Member 45690375-Jul-09 20:33 
GeneralLayered Window without fake window Pin
FondaWu29-Jun-09 20:13
FondaWu29-Jun-09 20:13 
GeneralRe: Layered Window without fake window Pin
Martial Spirit12-Jul-09 3:04
Martial Spirit12-Jul-09 3:04 
GeneralRe: Layered Window without fake window Pin
sashoalm10-Sep-10 6:20
sashoalm10-Sep-10 6:20 
GeneralGood Job ! Pin
Cr4zyC0de28-Jun-09 23:26
Cr4zyC0de28-Jun-09 23:26 
Questionsubclass controls Pin
Ray Guan9-Jun-09 17:15
Ray Guan9-Jun-09 17:15 
AnswerRe: subclass controls Pin
Ray Guan10-Jun-09 16:53
Ray Guan10-Jun-09 16:53 
GeneralRe: subclass controls Pin
Jerry.Wang11-Jun-09 16:30
Jerry.Wang11-Jun-09 16:30 
GeneralRe: subclass controls Pin
Ray Guan14-Jun-09 6:27
Ray Guan14-Jun-09 6:27 
QuestionSupported controls Pin
Member 456903727-May-09 17:22
Member 456903727-May-09 17:22 
Questionwhere is the problem? Pin
dinggen26-May-09 5:26
dinggen26-May-09 5:26 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.