资源简介
实现一个可在父窗口中自由拖动的按钮(CMovableButton),并且不允许拖出父窗口(这样就拖不回来了)。
代码片段和文件信息
// MFCtest.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “MFCtest.h“
#include “MFCtestDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CMFCtestApp
BEGIN_MESSAGE_MAP(CMFCtestApp CWinAppEx)
ON_COMMAND(ID_HELP &CWinApp::onhelp)
END_MESSAGE_MAP()
// CMFCtestApp construction
CMFCtestApp::CMFCtestApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
// The one and only CMFCtestApp object
CMFCtestApp theApp;
// CMFCtestApp initialization
BOOL CMFCtestApp::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);
// Set this to include all the common control classes you want to use
// in your application.
InitCtrls.dwICC = ICC_WIN95_CLASSES;
InitCommonControlsEx(&InitCtrls);
CWinAppEx::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“));
CMFCtestDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2103 2013-12-03 20:30 MFCtest\MFCtest\MFCtest.cpp
文件 514 2013-12-03 20:30 MFCtest\MFCtest\MFCtest.h
文件 4784 2014-01-17 14:21 MFCtest\MFCtest\MFCtest.rc
文件 5578 2014-01-17 09:58 MFCtest\MFCtest\MFCtest.vcproj
文件 2005 2014-01-17 14:21 MFCtest\MFCtest\MFCtestDlg.cpp
文件 486 2014-01-17 15:05 MFCtest\MFCtest\MFCtestDlg.h
文件 2021 2014-01-17 15:40 MFCtest\MFCtest\MovableButton.cpp
文件 453 2014-01-17 15:05 MFCtest\MFCtest\MovableButton.h
文件 67777 2007-11-28 16:21 MFCtest\MFCtest\res\MFCtest.ico
文件 398 2013-12-03 20:30 MFCtest\MFCtest\res\MFCtest.rc2
文件 541 2014-01-17 09:57 MFCtest\MFCtest\resource.h
文件 209 2013-12-03 20:30 MFCtest\MFCtest\stdafx.cpp
文件 2029 2013-12-03 20:30 MFCtest\MFCtest\stdafx.h
文件 1432 2013-12-03 20:30 MFCtest\MFCtest\targetver.h
文件 887 2013-12-03 20:30 MFCtest\MFCtest.sln
..A..H. 42496 2014-01-17 15:42 MFCtest\MFCtest.suo
目录 0 2014-01-17 15:42 MFCtest\MFCtest\res
目录 0 2014-01-17 15:42 MFCtest\MFCtest
目录 0 2014-01-17 15:42 MFCtest
----------- --------- ---------- ----- ----
133713 19
- 上一篇:矩阵满秩分解的C语言代码
- 下一篇:清华 严蔚敏 《数据结构》代码全部实现c语言
相关资源
- 声纹识别MATLAB源程序全代码
- MFC 计算文件MD5码 VC++
- c++编的mfc 贪吃蛇游戏
- mfc 对话框 创建进度条 显示当前进度
- MFC操作Excel表,excel.hexcel.cpp源码
- 基于mfc tcp 文件传输 源代码
- MFC(C++)程序与文件关联后缀名含C
- MFC铅笔直线矩形菱形 算法
- MFC 五子棋 一个简单的五子棋游戏
- 酒店管理系统 VC++ MFC实现)
- 学生信息管理mfcword文档
- 一个MFC实现的简单的记事本程序
- VS2010中MFC工程名的修改
- VC++查看鼠标在图像选点坐标程序
- MFC类图-vs2010最新
- MFCC的matlab实现
- VS2010/MFC 读写excel文件 操作类
- MFC读取SHP文件
- 斗地主小游戏MFC版源程序
- C++网络聊天室程序
- 说话人识别代码
- VS2012 MFC小程序 简易网络聊天室
- MFC中使用JSONCPP_VS2013
- MFC 制作文本编辑器 桌面便签 置顶 置
- mfc+opengl离散点绘制曲面
- MFC 实现读取文件中的数字,并求和
- MFC和MATLAB混合编程
- C++MFC物资管理系统源码.zip
- vc++6.0 mfc 关于播放.AVI格式的文件源代
- mfc 课程设计 view 浏览器 收藏夹
评论
共有 条评论