代码搜索:CallBack
找到约 10,000 项符合「CallBack」的源代码
代码结果 10,000
www.eeworm.com/read/149369/12384522
m mmctl2.m
% mmctl2.m
Hc_boxon = uicontrol(gcf,'Style','radio',...
'Position',[20 45 100 20],...
'String','Set Box On',...
'Value',0,...
'CallBack',[...
's
www.eeworm.com/read/149369/12384531
m mmenu3.m
% mmenu3.m
Hm_top = uimenu('Label','Example');
Hm_box = uimenu(Hm_top,'Label','Axis Box',...
'CallBack',[...
'if strcmp(get(gca,''Box''),''on''),',...
'set(g
www.eeworm.com/read/149369/12384702
m mmenu2.m
% mmenu2.m
Hm_top = uimenu('Label','Example');
Hm_box = uimenu(Hm_top,'Label','Axis Box',...
'CallBack',[...
'if strcmp(get(gca,''Box''),''on''),',...
'set(g
www.eeworm.com/read/250662/12393218
h tree.h
/*
** Interface for a binary search tree module
*/
#define TREE_TYPE int /* Type of value in the tree */
/*
** insert
** Add a new value to the tree. The argument is the value
** to be add
www.eeworm.com/read/149206/12394756
h sample8.h
/**************************************************************************/
/* LabWindows/CVI User Interface Resource (UIR) Include File */
/* Copyright (c) National Instruments 2002.
www.eeworm.com/read/149206/12395025
h sample3.h
/**************************************************************************/
/* LabWindows/CVI User Interface Resource (UIR) Include File */
/* Copyright (c) National Instruments 2002.
www.eeworm.com/read/250122/12430039
m exm11332_1.m
%exm11332_1.m
figure
h_menu=uimenu(gcf,'Label','&Color'); %带简捷键C的用户菜单Color
h_submenu1=uimenu(h_menu,'Label','&Blue',... %带简捷键B的的下拉菜单Blue
'Callback','set(gcf,''color'',''blue'')');
h_su
www.eeworm.com/read/250122/12431013
m exm1132_1.m
%exm1132_1.m
figure %创建一个图形窗
h_menu=uimenu(gcf,'label','Color'); %制作用户顶层菜单项Color
h_submenu1=uimenu(h_menu,'label','Blue',... %制作下拉菜单项Blue
'callback','set(gcf,''Color'',''
www.eeworm.com/read/250122/12431234
m exm11333_2.m
%exm11333_2.m
figure
h_menu=uimenu('label','Option');
h_sub1=uimenu(h_menu,'label','Grid on',... %
'callback',[...
'grid on,',...
'set(h_sub1,''checked'',''on''),',...
'set(h_s
www.eeworm.com/read/148696/12441061
h loadstrg.h
#define IDM_EXIT 100
#define IDM_TEST 200
#define IDM_ABOUT 301
#define IDS_STRINGBASE 100
LRESULT CALLBACK WndProc (HWND, UINT, WPARAM, LPARAM);
LRESULT CAL