mainmenu.cpp

来自「专家系统是研究用解决某专门问题的专家知识来建立人机系统的方法和技术。」· C++ 代码 · 共 77 行

CPP
77
字号
// MainMenu.cpp : implementation file
//

#include "stdafx.h"
#include "SMESWHY.h"
#include "MainMenu.h"

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

/////////////////////////////////////////////////////////////////////////////
// CMainMenu

IMPLEMENT_DYNCREATE(CMainMenu, CMiniFrameWnd)

CMainMenu::CMainMenu()
{
}

CMainMenu::~CMainMenu()
{
}


BEGIN_MESSAGE_MAP(CMainMenu, CMiniFrameWnd)
	//{{AFX_MSG_MAP(CMainMenu)
	ON_COMMAND(ID_MENUITEMABT, OnMenuitemabt)
	ON_COMMAND(ID_MENUITEMBKT, OnMenuitembkt)
	ON_COMMAND(ID_MENUITEMDPT, OnMenuitemdpt)
	ON_COMMAND(ID_MENUITEMEXIT, OnMenuitemexit)
	ON_COMMAND(ID_MENUITEMSEA, OnMenuitemsea)
	ON_COMMAND(ID_MENUITEMZKT, OnMenuitemzkt)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CMainMenu message handlers

void CMainMenu::OnMenuitemabt() 
{
	// TODO: Add your command handler code here
	
}

void CMainMenu::OnMenuitembkt() 
{
	// TODO: Add your command handler code here
	
}

void CMainMenu::OnMenuitemdpt() 
{
	// TODO: Add your command handler code here
	
}

void CMainMenu::OnMenuitemexit() 
{
	// TODO: Add your command handler code here
	
}

void CMainMenu::OnMenuitemsea() 
{
	// TODO: Add your command handler code here
	
}

void CMainMenu::OnMenuitemzkt() 
{
	// TODO: Add your command handler code here
	
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?