Click here to Skip to main content
15,896,063 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  
This article tries to find a way to show Windows standard controls on layered windows. Provides both Native MFC and WinForms source code.
// SemiTransparentDialogWithStandardCtrls.cpp : Defines the class behaviors for the application.
//

#include "stdafx.h"
#include "SemiTransparentDialogWithStandardCtrls.h"
#include "SemiTransparentDialogWithStandardCtrlsDlg.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#endif


// CSemiTransparentDialogWithStandardCtrlsApp

BEGIN_MESSAGE_MAP(CSemiTransparentDialogWithStandardCtrlsApp, CWinApp)
END_MESSAGE_MAP()


// CSemiTransparentDialogWithStandardCtrlsApp construction

CSemiTransparentDialogWithStandardCtrlsApp::CSemiTransparentDialogWithStandardCtrlsApp()
{
	// TODO: add construction code here,
	// Place all significant initialization in InitInstance
}


// The one and only CSemiTransparentDialogWithStandardCtrlsApp object

CSemiTransparentDialogWithStandardCtrlsApp theApp;


// CSemiTransparentDialogWithStandardCtrlsApp initialization

BOOL CSemiTransparentDialogWithStandardCtrlsApp::InitInstance()
{
	::SystemParametersInfo(SPI_SETDRAGFULLWINDOWS,TRUE,NULL,0);

	INITCOMMONCONTROLSEX InitCtrls;
	InitCtrls.dwSize = sizeof(InitCtrls);
	// Set this to include all the common control classes you want to use
	// in your application.
	InitCtrls.dwICC = ICC_WIN95_CLASSES;
	InitCommonControlsEx(&InitCtrls);

	CWinApp::InitInstance();

	CSemiTransparentDialogWithStandardCtrlsDlg dlg;
	m_pMainWnd = &dlg;
	dlg.DoModal();

	// Since the dialog has been closed, return FALSE so that we exit the
	//  application, rather than start the application's message pump.
	return FALSE;
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

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