资源简介
使用C++做好看的登陆界面
代码片段和文件信息
// OwnerEdit.cpp : implementation file
// Download by http://www.codefans.net
#include “stdafx.h“
#include “OwnerEdit.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// COwnerEdit
COwnerEdit::COwnerEdit()
{
m_BoundryBrush.CreateSolidBrush(RGB(187200143));
}
COwnerEdit::~COwnerEdit()
{
m_BoundryBrush.Deleteobject();
}
BEGIN_MESSAGE_MAP(COwnerEdit CEdit)
//{{AFX_MSG_MAP(COwnerEdit)
ON_WM_NCPAINT()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// COwnerEdit message handlers
void COwnerEdit::OnHoverEnter()
{
Redraw();
}
void COwnerEdit::OnHoverLeave()
{
Redraw();
}
void COwnerEdit::OnNcPaint()
{
// TODO: Add your message handler code here
CWindowDC DC(this);
CRect Rect;
GetWindowRect(&Rect);
if (IsHover())
{
DC.Selectobject(&m_BoundryBrush);
DC.Rectangle(00Rect.Width()Rect.Height());
}
else
{
DC.DrawEdge(CRect(00Rect.Width()Rect.Height())EDGE_SUNKENBF_FLAT|BF_RECT);
}
// Do not call CEdit::OnNcPaint() for painting messages
}
void COwnerEdit::Redraw()
{
RedrawWindow(NULLNULLRDW_frame|RDW_INVALIDATE);
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 20679 2010-12-14 23:59 MyBusinessDlg\Debug\OwnerEdit.obj
文件 106082 2010-12-14 23:59 MyBusinessDlg\Debug\StdAfx.obj
文件 139363 2012-11-23 14:44 MyBusinessDlg\Debug\ti
文件 300612 2012-11-23 14:44 MyBusinessDlg\Debug\ti
文件 15579 2010-12-14 23:59 MyBusinessDlg\Debug\ti
文件 5494104 2010-12-14 23:59 MyBusinessDlg\Debug\ti
文件 336896 2012-11-23 14:44 MyBusinessDlg\Debug\ti
文件 11516 2010-12-14 23:59 MyBusinessDlg\Debug\ti
文件 44667 2010-12-14 23:59 MyBusinessDlg\Debug\ti
文件 214016 2012-11-23 14:44 MyBusinessDlg\Debug\vc60.idb
文件 364544 2012-11-23 14:44 MyBusinessDlg\Debug\vc60.pdb
文件 29448 2012-11-23 14:44 MyBusinessDlg\Debug\XPButton.obj
文件 1421 2010-09-01 10:56 MyBusinessDlg\OwnerEdit.cpp
文件 1270 2006-03-06 15:59 MyBusinessDlg\OwnerEdit.h
文件 3705 2006-02-20 10:44 MyBusinessDlg\ReadMe.txt
文件 776 2006-03-03 14:12 MyBusinessDlg\res\exit_foc.bmp
文件 776 2006-03-03 14:12 MyBusinessDlg\res\exit_nor.bmp
文件 776 2006-03-03 14:11 MyBusinessDlg\res\hel_focu.bmp
文件 776 2006-03-03 14:11 MyBusinessDlg\res\hel_norm.bmp
文件 776 2006-03-03 14:11 MyBusinessDlg\res\max_focu.bmp
文件 776 2006-03-03 14:11 MyBusinessDlg\res\max_norm.bmp
文件 776 2006-03-03 14:11 MyBusinessDlg\res\min_focu.bmp
文件 776 2006-03-03 14:11 MyBusinessDlg\res\min_norm.bmp
文件 776 2006-03-03 14:10 MyBusinessDlg\res\res_focu.bmp
文件 776 2006-03-03 14:10 MyBusinessDlg\res\res_norm.bmp
文件 1078 2006-02-20 10:44 MyBusinessDlg\res\T2itleBarColor.ico
..A.SH. 16384 2007-03-30 12:23 MyBusinessDlg\res\Thumbs.db
文件 3774 2006-04-07 23:51 MyBusinessDlg\res\ti
文件 405 2006-02-20 10:44 MyBusinessDlg\res\ti
文件 1235 2006-04-09 13:45 MyBusinessDlg\resource.h
............此处省略24个文件信息
- 上一篇:特征码搜索基址 c/c++源代码
- 下一篇:用MFC绘制五角星
相关资源
- 特征码搜索基址 c/c++源代码
- C++ 数学计算库 TooN
- FLUENT中的C++编程
- C++科学计算器
- c c++嵌入式系统编程 pdf 中文版+英文版
- c++数据结构课程设计-校园最短路径采
- AES算法加密解密C++源码及程序完整的
- C++语言学习教程
- C++MFC实现的绘制正方体的三视图
- C++11教程参考书
- The C++ Programming Language习题答案清晰版
- 最短寻道时间优先和扫描算法C++实现
- LL(1)语法分析器C++版
- vc++使用libcurl文件,支持断点续传,支
- 自绘按钮的实现,对VC++6.0控件派生学
- OpenCV漫水填充程序 by浅墨
- OpenCV图像的膨胀与腐蚀程序 by浅墨
- 我用VS2010 C++和windows API制作的坦克大
- 算术编码C++ 源代码
- C++开发漂亮的软件界面
- vc++收发电子邮件系统
- C++ CAsyncSocket类聊天室程序
- C++课程设计 学籍管理系统82049
- mfc酒店管理系统C++编写,程序简单,
- C++编写Genesis200自动化
- C++实现线程池源文件
-
最简单的c++ xm
l类,跨平台使用 - c++ 、MFC 实现中点画圆算法及工程代码
- 用C++语言编写一个班级信息管理系统
- VC++ 球体 Phong光照模型
评论
共有 条评论