• 大小: 1.86MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-08-16
  • 语言: 其他
  • 标签: 动态菜单  

资源简介

2. 编写一个程序,包含“画图”菜单,菜单中包含“圆形”、“矩形”、“退出”菜单项。单击“圆形”菜单项时,系统在“画图”菜单后建立一个动态菜单“圆形”,“圆形”菜单中包括“绘制图形”、“移动图形”、“放大”、“缩小”、“重绘”等选项。当单击“矩形”菜单项时,系统在“画图”菜单后建立一个动态菜单“矩形”,“矩形”菜单中包括“绘制图形”、“移动图形”、“放大”、“缩小”、“重绘”等选项。当单击“绘制图形”时,利用“右箭头”键可以将图形长度增大;单击“左箭头”键时可以将图形长度减小;单击“下箭头”键时,可以将图形的高度增大;单击“上箭头”键时,可以将图形的高度减小。当选择“移动图形”时,单击箭头键,可以将图形向相应方向移动。单击“放大”、“缩小”选项时,可以将图形放大或缩小。单击“重绘”菜单选项时,重新开始绘制图形。

资源截图

代码片段和文件信息

// MainFrm.cpp : implementation of the CMainframe class
//

#include “stdafx.h“
#include “创建菜单.h“

#include “MainFrm.h“

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

/////////////////////////////////////////////////////////////////////////////
// CMainframe

IMPLEMENT_DYNCREATE(CMainframe CframeWnd)

BEGIN_MESSAGE_MAP(CMainframe CframeWnd)
//{{AFX_MSG_MAP(CMainframe)
// NOTE - the ClassWizard will add and remove mapping macros here.
//    DO NOT EDIT what you see in these blocks of generated code !
ON_WM_CREATE()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()

static UINT indicators[] =
{
ID_SEPARATOR           // status line indicator
ID_INDICATOR_CAPS
ID_INDICATOR_NUM
ID_INDICATOR_SCRL
};

/////////////////////////////////////////////////////////////////////////////
// CMainframe construction/destruction

CMainframe::CMainframe()
{
// TODO: add member initialization code here

}

CMainframe::~CMainframe()
{
}

int CMainframe::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (CframeWnd::OnCreate(lpCreateStruct) == -1)
return -1;

if (!m_wndToolBar.CreateEx(this TBstyle_FLAT WS_CHILD | WS_VISIBLE | CBRS_TOP
| CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||
!m_wndToolBar.LoadToolBar(IDR_MAINframe))
{
TRACE0(“Failed to create toolbar\n“);
return -1;      // fail to create
}

if (!m_wndStatusBar.Create(this) ||
!m_wndStatusBar.SetIndicators(indicators
  sizeof(indicators)/sizeof(UINT)))
{
TRACE0(“Failed to create status bar\n“);
return -1;      // fail to create
}

// TODO: Delete these three lines if you don‘t want the toolbar to
//  be dockable
m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
EnableDocking(CBRS_ALIGN_ANY);
DockControlBar(&m_wndToolBar);


this->menu.LoadMenu(IDR_MYMENU); //加载用户自定义菜单
this->SetMenu(&menu); //设置自定义菜单替换现有菜单

return 0;
}

BOOL CMainframe::PreCreateWindow(CREATESTRUCT& cs)
{
if( !CframeWnd::PreCreateWindow(cs) )
return FALSE;
// TODO: Modify the Window class or styles here by modifying
//  the CREATESTRUCT cs
    cs.hMenu=NULL;
return TRUE;
}

/////////////////////////////////////////////////////////////////////////////
// CMainframe diagnostics

#ifdef _DEBUG
void CMainframe::AssertValid() const
{
CframeWnd::AssertValid();
}

void CMainframe::Dump(CDumpContext& dc) const
{
CframeWnd::Dump(dc);
}

#endif //_DEBUG

/////////////////////////////////////////////////////////////////////////////
// CMainframe message handlers


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       4317  2008-04-23 11:46  创建菜单\ReadMe.txt

     文件        210  2008-04-23 11:46  创建菜单\StdAfx.cpp

     文件       1054  2008-04-23 11:46  创建菜单\StdAfx.h

     文件       2444  2012-10-14 12:10  创建菜单\创建菜单.clw

     文件       4161  2008-04-23 11:46  创建菜单\创建菜单.cpp

     文件       4617  2008-04-23 11:46  创建菜单\创建菜单.dsp

     文件        541  2008-04-23 11:46  创建菜单\创建菜单.dsw

     文件       1324  2008-04-23 11:46  创建菜单\创建菜单.h

     文件     164864  2012-10-14 12:22  创建菜单\创建菜单.ncb

     文件       2210  2012-10-14 12:07  创建菜单\创建菜单.plg

     文件       1680  2008-04-23 11:46  创建菜单\创建菜单Doc.cpp

     文件       1431  2008-04-23 11:46  创建菜单\创建菜单Doc.h

     文件       1482  2012-10-13 23:09  创建菜单\MainFrm.h

     文件       2135  2012-10-13 23:17  创建菜单\创建菜单View.h

     文件       5250  2012-10-13 23:17  创建菜单\创建菜单View.cpp

     文件      11900  2012-10-13 23:17  创建菜单\创建菜单.rc

     文件        959  2012-10-13 23:32  创建菜单\Resource.h

     文件      29448  2012-10-14 11:48  创建菜单\创建菜单.aps

     文件       2662  2012-10-14 12:07  创建菜单\MainFrm.cpp

     文件      54784  2012-10-14 12:22  创建菜单\创建菜单.opt

     文件       1078  2008-04-23 11:46  创建菜单\res\Toolbar.bmp

     文件       1078  2008-04-23 11:46  创建菜单\res\创建菜单.ico

     文件        400  2008-04-23 11:46  创建菜单\res\创建菜单.rc2

     文件       1078  2008-04-23 11:46  创建菜单\res\创建菜单Doc.ico

     文件       7292  2012-10-14 12:07  创建菜单\Debug\创建菜单.res

     文件     214016  2012-10-14 12:20  创建菜单\Debug\vc60.idb

     文件    5494560  2012-10-14 12:07  创建菜单\Debug\创建菜单.pch

     文件     364544  2012-10-14 12:07  创建菜单\Debug\vc60.pdb

     文件     105967  2012-10-14 12:07  创建菜单\Debug\StdAfx.obj

     文件      30680  2012-10-14 12:07  创建菜单\Debug\创建菜单View.obj

............此处省略12个文件信息

评论

共有 条评论