代码搜索:CallBack
找到约 10,000 项符合「CallBack」的源代码
代码结果 10,000
www.eeworm.com/read/410195/11298916
h callback_function_lib.h
/*The Callback Function are Declear here.*/
/*2008-10-21*/
extern void Open_File(TRT_ReceiveData*, void*);
extern void Close_File(TRT_ReceiveData*, void*);
extern void SAVE_FILE_AS(TRT_ReceiveData
www.eeworm.com/read/410195/11298922
c callback_function_lib.c
/*The Callback Function are defined here.*/
/*2008-10-21*/
extern void Open_File(TRT_ReceiveData* aa, void* bb)
{
TRT_SetValues(TRT_cid,"Message_Box",
TRT_ATT_TEXT,
"Open File S
www.eeworm.com/read/263959/11335589
m test_edit_callback.m
function test_edit_callback
% Find the value typed into the edit box
str = get (gcbo,'String');
% Place the value into the text field
Hndl = findobj(gcbf,'Tag','Label1');
set (Hndl,'String',s
www.eeworm.com/read/263959/11335602
m temp_conversion_callback.m
function temp_conversion_callback( action )
% Callback function for the temp_conversion program.
% This function uses a switch structure to route the
% callbacks to the proper section of code. N
www.eeworm.com/read/263959/11335635
m test_toggle_callback.m
function test_toggle_callback
% Find the state of the toggle button
state = get(gcbo,'Value');
% Place the value into the text field
Hndl = findobj(gcbf,'Tag','Label1');
if state == 0
set
www.eeworm.com/read/263959/11335643
m test_listbox_callback.m
function test_listbox_callback(action)
switch action
case 'button'
Hndl = findobj(gcbf,'Tag','Listbox1');
value = get (Hndl,'Value');
Hndl = findobj(gcbf,'Tag','Label1');
str = ['O
www.eeworm.com/read/263959/11335656
m test_slider_callback.m
function test_slider_callback
% Find the value of the popup menu
value = get(gcbo,'Value');
% Place the value into the text field
Hndl = findobj(gcbf,'Tag','Label1');
str = sprintf('%.2f',val
www.eeworm.com/read/263959/11335659
m plot_line_callback.m
function plot_line_callback( action )
% Callback function for the plot_line program.
% This function uses a switch structure to route the
% callbacks to the proper section of code.
% Make su
www.eeworm.com/read/263959/11335676
m test_radiobutton_callback.m
function test_radiobutton_callback(action)
switch action
case 'rb1'
Hndl = findobj(gcbf,'Tag','Label1');
set (Hndl,'String','Option 1');
Hndl = findobj(gcbf,'Tag','radiobutton1');
www.eeworm.com/read/263959/11335684
m test_popup_callback.m
function test_popup_callback
% Find the value of the popup menu
value = get(gcbo,'Value');
% Place the value into the text field
Hndl = findobj(gcbf,'Tag','Label1');
str = ['Option ' num2str(