• 大小: 70KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-20
  • 语言: C/C++
  • 标签: mfc  

资源简介

实现一个可在父窗口中自由拖动的按钮(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


评论

共有 条评论