资源简介

c++ gdi+ 异形窗口 局部透明 使用了user32.dll中的接口。进攻参考讨论。

资源截图

代码片段和文件信息

// AlphaWnd.cpp : Defines the class behaviors for the application.
//

#include “stdafx.h“
#include “AlphaWnd.h“
#include “AlphaWndDlg.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#endif


// CAlphaWndApp

BEGIN_MESSAGE_MAP(CAlphaWndApp CWinApp)
ON_COMMAND(ID_HELP &CWinApp::onhelp)
END_MESSAGE_MAP()


// CAlphaWndApp construction

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


// The one and only CAlphaWndApp object

CAlphaWndApp theApp;


// CAlphaWndApp initialization

BOOL CAlphaWndApp::InitInstance()
{
// InitCommonControlsEx() is required on Windows XP if an application
// manifest specifies use of ComCtl32.dll version 6 or later to enable
// visual styles.  Otherwise any window creation will fail.
INITCOMMONCONTROLSEX InitCtrls;
InitCtrls.dwSize = sizeof(InitCtrls);

Gdiplus::GdiplusStartupInput gdiplusStartupInput;
Gdiplus::GdiplusStartup(&m_gdiplusToken &gdiplusStartupInput NULL);

// 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();

AfxEnableControlContainer();

// Standard initialization
// If you are not using these features and wish to reduce the size
// of your final executable you should remove from the following
// the specific initialization routines you do not need
// Change the registry key under which our settings are stored
// TODO: You should modify this string to be something appropriate
// such as the name of your company or organization
SetRegistryKey(_T(“Local AppWizard-Generated Applications“));

CAlphaWndDlg dlg;
m_pMainWnd = &dlg;
INT_PTR nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
//  dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
//  dismissed with Cancel
}

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

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件    2307588  2012-02-16 10:38  AlphaWnd\AlphaWnd\AlphaWnd.aps

     文件       2238  2012-02-15 15:38  AlphaWnd\AlphaWnd\AlphaWnd.cpp

     文件        546  2012-02-15 15:38  AlphaWnd\AlphaWnd\AlphaWnd.h

     文件       5099  2012-02-16 10:38  AlphaWnd\AlphaWnd\AlphaWnd.rc

     文件       5572  2012-02-16 09:53  AlphaWnd\AlphaWnd\AlphaWnd.vcproj

     文件       1427  2012-02-16 11:11  AlphaWnd\AlphaWnd\AlphaWnd.vcproj.WIN-MHBRSIRPBJV.Administrator.user

     文件      12298  2012-02-16 11:07  AlphaWnd\AlphaWnd\AlphaWndDlg.cpp

     文件       2514  2012-02-16 11:01  AlphaWnd\AlphaWnd\AlphaWndDlg.h

     文件    1508085  2012-02-15 12:32  AlphaWnd\AlphaWnd\BACKGND1_1-odl.png

     文件     333651  2012-02-15 17:44  AlphaWnd\AlphaWnd\BACKGND1_1.png

     文件    2248898  2012-02-15 15:38  AlphaWnd\AlphaWnd\BACKGND1_1_MASK.bmp

     文件       3128  2007-05-22 15:54  AlphaWnd\AlphaWnd\BMPBTN_1.bmp

     文件       3128  2007-05-22 15:54  AlphaWnd\AlphaWnd\BMPBTN_2.bmp

     文件     120429  2007-01-30 20:12  AlphaWnd\AlphaWnd\ClockBackchain.png

     文件       3689  2007-02-27 17:08  AlphaWnd\AlphaWnd\exit_24.png

     文件       5357  2007-02-09 15:54  AlphaWnd\AlphaWnd\exit_48.png

     文件       4057  2012-02-15 15:25  AlphaWnd\AlphaWnd\ReadMe.txt

     文件      21630  2005-08-12 16:37  AlphaWnd\AlphaWnd\res\AlphaWnd.ico

     文件        399  2012-02-15 15:25  AlphaWnd\AlphaWnd\res\AlphaWnd.rc2

     文件        725  2012-02-16 10:38  AlphaWnd\AlphaWnd\resource.h

     文件       4191  2007-02-27 17:09  AlphaWnd\AlphaWnd\setting_24.png

     文件       6070  2007-02-09 15:07  AlphaWnd\AlphaWnd\setting_48.png

     文件        208  2012-02-15 15:25  AlphaWnd\AlphaWnd\stdafx.cpp

     文件       2947  2012-02-15 15:38  AlphaWnd\AlphaWnd\stdafx.h

     文件        889  2012-02-15 15:25  AlphaWnd\AlphaWnd.sln

    ..A..H.     16896  2012-02-16 11:11  AlphaWnd\AlphaWnd.suo

     目录          0  2012-02-15 15:25  AlphaWnd\AlphaWnd\res

     目录          0  2012-02-16 11:12  AlphaWnd\AlphaWnd

     目录          0  2012-02-16 11:12  AlphaWnd

----------- ---------  ---------- -----  ----

............此处省略2个文件信息

评论

共有 条评论