#pragma once// CTransparentStaticclass CTransparentStatic : public CStatic{DECLARE_DYNAMIC(CTransparentStatic)public:CTransparentStatic();virtual ~CTransparentStatic();protected:afx_msg LRESULT OnSetText(WPARAM,LPARAM); afx_msg HBRUSH CtlColor(CDC* /*pDC*/, UINT /*nCtlColor*/);DECLARE_MESSAGE_MAP()};// TransparentStatic.cpp : implementation file//#include "stdafx.h"#include "TransparentStatic.h"..