• 大小: 0.02M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-21
  • 标签:

资源简介

C++实战源码-按钮七巧板(入门级实例309).zip

资源截图

代码片段和文件信息

// CustomButton.cpp : implementation file
//

#include “stdafx.h“
#include “NotRule.h“
#include “CustomButton.h“
#include 
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
#define PI 2.0*asin(1.0)
/////////////////////////////////////////////////////////////////////////////
// CCustomButton

CCustomButton::CCustomButton()
{
IsPressed = false; 
}

CCustomButton::~CCustomButton()
{
}


BEGIN_MESSAGE_MAP(CCustomButton CButton)
//{{AFX_MSG_MAP(CCustomButton)
ON_WM_LBUTTONDOWN()
ON_WM_LBUTTONUP()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CCustomButton message handlers
void CCustomButton::DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct) 

CRect rect;
GetClientRect(rect); //获得按钮客户区域
CDC dc;
dc.Attach(lpDrawItemStruct->hDC); //获得设备上下文
int xyr;
x = rect.Width()/2;
y = rect.top;
r = rect.Height()/2;
doubl

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        3672  2010-06-08 15:19  NotRule\CustomButton.cpp
     文件        1470  2007-05-08 08:47  NotRule\CustomButton.h
     文件        1599  2010-10-27 11:44  NotRule\NotRule.clw
     文件        2077  2007-05-08 08:47  NotRule\NotRule.cpp
     文件        4509  2007-05-08 08:47  NotRule\NotRule.dsp
     文件         539  2007-05-08 08:47  NotRule\NotRule.dsw
     文件        1335  2007-05-08 08:47  NotRule\NotRule.h
     文件        5908  2010-06-22 08:59  NotRule\NotRule.rc
     文件        4586  2007-05-08 08:47  NotRule\NotRuleDlg.cpp
     文件        1494  2007-05-08 08:47  NotRule\NotRuleDlg.h
     文件        1050  2007-05-08 08:47  NotRule\resource.h
     文件         209  2007-05-08 08:47  NotRule\StdAfx.cpp
     文件        1054  2007-05-08 08:47  NotRule\StdAfx.h
     文件        2238  2007-05-08 08:47  NotRule\res\Lamp.ico
     文件        2238  2007-05-08 08:47  NotRule\res\Lamp1.ico
     文件        5694  2005-10-08 16:28  NotRule\res\NotRule.ico
     文件         399  2007-05-08 08:47  NotRule\res\NotRule.rc2
     文件       10240  2010-06-22 09:16  NotRule\res\Thumbs.db

评论

共有 条评论