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

资源简介

C++实战源码-设计群组控件(入门级实例291).zip

资源截图

代码片段和文件信息

// GroupBox.cpp : implementation file
//

#include “stdafx.h“
#include “StaticBox.h“
#include “GroupBox.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CGroupBox

CGroupBox::CGroupBox()
{
}

CGroupBox::~CGroupBox()
{
}


BEGIN_MESSAGE_MAP(CGroupBox CStatic)
//{{AFX_MSG_MAP(CGroupBox)
ON_WM_PAINT()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CGroupBox message handlers

void CGroupBox::OnPaint() 
{
CPaintDC dc(this); // device context for painting

// TODO: Add your message handler code here
CRect rectWnd; 
CString cstrText; 
GetWindowText(cstrText);
dc.Selectobject(GetFont());
CSize size = dc.GetTextExtent(cstrText);
GetWindowRect (rectWnd);
dc.SetBkMode(TRANSPARENT);
//绘制文本
dc.DrawText(cstrTextCRect(100size.cx+10size.

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        1803  2010-06-02 14:59  StaticBox\GroupBox.cpp
     文件        1096  2010-06-02 14:59  StaticBox\GroupBox.h
     文件         916  2010-10-06 09:26  StaticBox\resource.h
     文件        1420  2010-10-27 10:55  StaticBox\StaticBox.clw
     文件        2105  2010-06-02 14:57  StaticBox\StaticBox.cpp
     文件        4402  2010-10-06 09:29  StaticBox\StaticBox.dsp
     文件         543  2010-06-02 14:57  StaticBox\StaticBox.dsw
     文件        1357  2010-06-02 14:57  StaticBox\StaticBox.h
     文件        5668  2010-10-06 09:27  StaticBox\StaticBox.rc
     文件        4148  2010-06-02 14:58  StaticBox\StaticBoxDlg.cpp
     文件        1365  2010-06-02 14:58  StaticBox\StaticBoxDlg.h
     文件         211  2010-06-02 14:57  StaticBox\StdAfx.cpp
     文件        1054  2010-06-02 14:57  StaticBox\StdAfx.h
     文件      404734  2010-10-06 09:26  StaticBox\res\003.bmp
     文件        5694  2005-10-08 16:28  StaticBox\res\StaticBox.ico
     文件         401  2010-06-02 14:57  StaticBox\res\StaticBox.rc2
     文件        7168  2010-06-22 09:01  StaticBox\res\Thumbs.db

评论

共有 条评论