📄 sample2_1.h
字号:
/**************************************************************************//* LabWindows/CVI User Interface Resource (UIR) Include File *//* Copyright (c) National Instruments 2001. All Rights Reserved. *//* *//* WARNING: Do not add to, delete from, or otherwise modify the contents *//* of this include file. *//**************************************************************************/#include <userint.h>#ifdef __cplusplus extern "C" {#endif /* Panels and Controls: */#define PANEL 1 /* callback function: panel */#define PANEL_2 2#define PANEL_2_COMMANDBUTTON 2 /* callback function: ok */ /* Menu Bars, Menus, and Menu Items: */#define MEMU 1#define MEMU_File 2#define MEMU_File_Open 3 /* callback function: Mopen */#define MEMU_File_Save 4 /* callback function: Msave */#define MEMU_File_Exit 5 /* callback function: Mexit */#define MEMU_Help 6 /* callback function: Mhelp */ /* Callback Prototypes: */ void CVICALLBACK Mexit(int menubar, int menuItem, void *callbackData, int panel);void CVICALLBACK Mhelp(int menubar, int menuItem, void *callbackData, int panel);void CVICALLBACK Mopen(int menubar, int menuItem, void *callbackData, int panel);void CVICALLBACK Msave(int menubar, int menuItem, void *callbackData, int panel);int CVICALLBACK ok(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);int CVICALLBACK panel(int panel, int event, void *callbackData, int eventData1, int eventData2);#ifdef __cplusplus }#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -