Click here to Skip to main content
15,885,782 members
Articles / Desktop Programming / MFC

Perfect Semi-transparent & Shaped Dialogs with Standard, ActiveX, and Translucent Controls for Windows 2000+

Rate me:
Please Sign up or sign in to vote.
4.93/5 (119 votes)
9 Feb 2010CPOL5 min read 3.2M   23.5K   226  
This article tries to find a way to show standard controls, ActiveX controls, translucent controls on layered windows. Native MFC source code provided.
#pragma once

// CStandardDialog dialog

class CStandardDialog : public CDialog
{
	DECLARE_DYNAMIC(CStandardDialog)

public:
	CStandardDialog(UINT nIDTemplate, COLORREF clrTransparent = RGB(0, 255, 0), CWnd* pParentWnd = NULL);

	virtual ~CStandardDialog();

	void ShowDialog();

	DECLARE_MESSAGE_MAP()
	
private:
	COLORREF m_clrTransparent;
	CBrush m_brush;

protected:
	virtual void OnOK();
	virtual void OnCancel();
	void EndDialog(int nResult);

	afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
	virtual BOOL OnInitDialog();
};

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
D.K.Wang is working for a leading interactive entertainment media company located in Shanghai, China. Skilled in Windows C++, MFC, WTL, PHP etc. Started with professional games development since 2005, now devoted to the core functionality such as graphics rendering, physics simulation and scene management for a household game engine.

Comments and Discussions