代码搜索:Menu
找到约 10,000 项符合「Menu」的源代码
代码结果 10,000
www.eeworm.com/read/468905/6981655
jpg menu.jpg
www.eeworm.com/read/468602/6985770
c menu.c
#ifndef lint
static char *rcsid_Menu_c = "$Header: Menu.c 88/08/09 08:57:49 Xusr Exp $";
#endif
/*
* Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts.
*
*
www.eeworm.com/read/468351/6989081
_c menu._c
#include
#include
#include "stdtypes.h"
#include "timer.h"
#include "key.h"
#include "port.h"
#include "lcd.h"
#include "menu.h"
extern UNS8 key_num;
#define INT8U u
www.eeworm.com/read/468351/6989092
c menu.c
#include
#include
#include "stdtypes.h"
#include "timer.h"
#include "key.h"
#include "port.h"
#include "lcd.h"
#include "menu.h"
extern UNS8 key_num;
#define INT8U u
www.eeworm.com/read/468291/6996129
css menu.css
body {font-family:Arial, Helvetica, sans-serif; font-size:11px;}
/*Example for a Menu Style*/
.menu {background-color:#ececec; color:#272727; border-bottom:1px solid #d7d7d7; height:23px;width:200px
www.eeworm.com/read/467979/6997707
rc menu.rc
#include "Main.h"
MAINMENU MENU
{
POPUP "&File"
{
MENUITEM "&Open...", CM_FILE_OPEN
MENUITEM "Save &As...", CM_FILE_SAVEAS
MENUITEM SEPARATOR
MENUITEM "E&xit", CM_FILE_EXIT
}
www.eeworm.com/read/467738/7000512
h menu.h
#ifndef _MENU_DOT_H
#define _MENU_DOT_H
typedef struct menu_struct
{
int const id;
const char *name;
struct menu_struct *son ,*father;
struct menu_struct *up,*down;
}MENU;
/*typed
www.eeworm.com/read/467738/7000521
c menu.c
/*
*********************************************************************************************
// 根据按键值移动显示菜单并执行菜单命令
// Function:
// UP_KEY 向上移动菜单项
// DOWN_KEY 向下移动菜单项
// ENTER_KEY 进入下一层
www.eeworm.com/read/467738/7000524
c~ menu.c~
/*
*********************************************************************************************
// 根据按键值移动显示菜单并执行菜单命令
// Function:
// UP_KEY 向上移动菜单项
// DOWN_KEY 向下移动菜单项
// ENTER_KEY 进入下一层