Click here to Skip to main content
15,860,972 members
Articles / Desktop Programming / MFC

Yet Another Transparent Static Control

Rate me:
Please Sign up or sign in to vote.
4.67/5 (24 votes)
14 Dec 2004CPOL1 min read 211.8K   7.7K   54  
Two other methods of making a transparent static control.
// TransStaticSample6Dlg.h : header file
//

#if !defined(AFX_TRANSSTATICSAMPLE6DLG_H__AD51A770_18C4_4AA0_8A53_4EFBC6FF99BB__INCLUDED_)
#define AFX_TRANSSTATICSAMPLE6DLG_H__AD51A770_18C4_4AA0_8A53_4EFBC6FF99BB__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#include "TransparentStatic.h"
#include "TransparentStatic2.h"

/////////////////////////////////////////////////////////////////////////////
// CTransStaticSample6Dlg dialog

class CTransStaticSample6Dlg : public CDialog
{
// Construction
public:
	CTransStaticSample6Dlg(CWnd* pParent = NULL);	// standard constructor

// Dialog Data
	//{{AFX_DATA(CTransStaticSample6Dlg)
	enum { IDD = IDD_TRANSSTATICSAMPLE6_DIALOG };
	CTransparentStatic    m_MyStatic;
	CTransparentStatic2   m_MyStatic2;
	//}}AFX_DATA

	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CTransStaticSample6Dlg)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);	// DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(CTransStaticSample6Dlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnTimer(UINT nIDEvent);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_TRANSSTATICSAMPLE6DLG_H__AD51A770_18C4_4AA0_8A53_4EFBC6FF99BB__INCLUDED_)

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
Architect
United States United States
Ali Rafiee has been developing windows applications using C++ since 1991, and he hasn't looked back since. Ali has been a software development consultant for must of his career, but he has finally settled down and has been working for an educational software company since 2000. While he is not working, he is either learning C#, flying airplanes, playing with his daughter, or answering peoples question on newsgroups, he finds that to be a great learning tool for himself.

Ali is also a Microsoft Visual C++ MVP.

Comments and Discussions