资源简介
vc++ 运用MFC实现基于AfxMessageBox的 自定义弹出窗
这是运用MFC技术实现的基于AfxMessageBox的自定义弹出窗,与标准的 MessageBox 相比,MFC提供 AfxMessageBox 方法使我们编写消息框变得更加容易。本弹出窗是经过自定义扩展的,过一段时间消息框就能自动关闭
代码片段和文件信息
// Hyperlink.cpp : implementation file
// Download by http://www.codefans.net
// Hyperlink static control. Will open the default browser with the given URL
// when the user clicks on the link.
//
// Copyright (C) 1997 - 1999 Chris Maunder
// All rights reserved. May not be sold for profit.
//
// Thanks to P錶 K. T鴑der for auto-size and window caption changes.
//
// “GotoURL“ function by Stuart Patterson
// As seen in the August 1997 Windows Developer‘s Journal.
// Copyright 1997 by Miller Freeman Inc. All rights reserved.
// Modified by Chris Maunder to use TCHARs instead of chars.
//
// “Default hand cursor“ from Paul DiLascia‘s Jan 1998 MSJ article.
//
// 2/29/00 -- P. Shaffer standard font mod.
#include “stdafx.h“
#include
#include “Hyperlink.h“
#include
#include “atlconv.h“ // for Unicode conversion - requires #include // MFC OLE automation classes
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
#define TOOLTIP_ID 1
/////////////////////////////////////////////////////////////////////////////
// CHyperlink
CHyperlink::CHyperlink()
{
m_hlinkCursor = NULL; // No cursor as yet
m_crlinkColour = RGB( 0 0 238); // Blue
m_crVisitedColour = RGB( 85 26 139); // Purple
m_crHoverColour = RGB(255 0 0); // Red
m_bOverControl = FALSE; // Cursor not yet over control
m_bVisited = FALSE; // Hasn‘t been visited yet.
m_nUnderline = ulHover; // Underline the link?
m_bAdjustToFit = TRUE; // Resize the window to fit the text?
m_strURL.Empty();
m_nTimerID = 100;
}
CHyperlink::~CHyperlink()
{
m_UnderlineFont.Deleteobject();
}
/////////////////////////////////////////////////////////////////////////////
// CHyperlink overrides
BOOL CHyperlink::DestroyWindow()
{
KillTimer(m_nTimerID);
return CStatic::DestroyWindow();
}
BOOL CHyperlink::PreTranslateMessage(MSG* pMsg)
{
m_ToolTip.RelayEvent(pMsg);
return CStatic::PreTranslateMessage(pMsg);
}
void CHyperlink::PreSubclassWindow()
{
// We want to get mouse clicks via STN_CLICKED
DWORD dwstyle = Getstyle();
::SetWindowLong(GetSafeHwnd() GWL_style dwstyle | SS_NOTIFY);
// Set the URL as the window text
if (m_strURL.IsEmpty())
GetWindowText(m_strURL);
// Check that the window text isn‘t empty. If it is set it as the URL.
CString strWndText;
GetWindowText(strWndText);
if (strWndText.IsEmpty())
{
ASSERT(!m_strURL.IsEmpty()); // Window and URL both NULL. DUH!
SetWindowText(m_strURL);
}
CFont* pFont = GetFont();
if (!pFont)
{
HFONT hFont = (HFONT)GetStockobject(DEFAULT_GUI_FONT);
if (hFont == NULL)
hFont = (HFONT) GetStockobject(ANSI_VAR_FONT
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
----------- --------- ---------- ----- ----
47011 18
相关资源
- VC++中文繁体、简体BIG-GBK编码转换程序
- 利用opengl 组件的基础上使用VC++编写的
- VC++编写DLL导出函数及其调用方法
- 马石安编写的VC++程序设计与应用程序
- 本例程采用VC++ 实现JPG格式图片的打开
- VC++异步通信的socket类
- 固高GT编程手册的Vc++单轴运动程序
- AES加密解密系统 VC++6.0 实现
- VC++access与excel数据的导入导出
- opengl实现鼠标坐标的显示
- VC++关于纹理特征提取的代码完整
- 基于mfcvc++6.0的图书馆管理系统
- 贝塞尔曲面 vc++ opengl
- 如何在VC++ 6.0创建RTX项目
- VC++ 实现将本地文件通过HTTP上传到网
- VC++采用内存映射方式高效率读写大数
- 《C语言课程设计》 学生成绩管理系统
- VC++6.0无法打开工程解决办法
- VC++6.0实现读取硬盘唯一序列号源码和
- mfc安装全局钩子,显示窗口的标题
- 使用动态优先权的进程调度算法的模
- 读取串口数据并画实时曲线的VC++程序
- VC++实现滑块皮肤 slider skin
- MFC 计算文件MD5码 VC++
- VC++垃圾文件清理工具源码.rar
- Win32窗口创建源码 by浅墨
- vc++6.0配置OpenCV
- http协议实现c++
- VC++ 多光谱影像处理
- 酒店管理系统 VC++ MFC实现)
评论
共有 条评论