代码搜索:CallBack
找到约 10,000 项符合「CallBack」的源代码
代码结果 10,000
www.eeworm.com/read/253934/12176941
m delay3callback.m
%Copyright 2002 The Mobile and Portable Radio Research Group
%
%This code is part of the GUI package
fee = str2num(get(gcbo, 'String'))*1e-9;
if isempty(fee)
set(DelayHandle4,'String',[]);
www.eeworm.com/read/253934/12176943
m delay4callback.m
%Copyright 2002 The Mobile and Portable Radio Research Group
%
%This code is part of the GUI package
fee = str2num(get(gcbo, 'String'))*1e-9;
if isempty(fee)
set(DelayHandle5,'String',[]);
www.eeworm.com/read/253934/12176946
m amp3callback.m
%Copyright 2002 The Mobile and Portable Radio Research Group
%
%This code is part of the GUI package
fee = str2num(get(gcbo, 'String'));
if isempty(fee)
set(AmpHandle4,'String',[]);
set(Am
www.eeworm.com/read/251851/12314875
m sf_tool_callback.m
function sf_tool_callback(command)
% Callback function for CheckMate sf_tool function
%
% See Also:
% sf_tool
switch command
case 'current_system'
sys = gcs;
if ~isempty(sys)
sy
www.eeworm.com/read/232704/14185048
m prev_next_callback.m
function varargout = Prev_Next_Callback(h, eventdata, handles, str)
%获取索引指针和地址
index = handles.Index;
Addresses = handles.Addresses;
%根据被单击的按钮修改显示结果
switch str
case 'Prev'
%索引值减1
i = i
www.eeworm.com/read/232704/14185051
m contact_name_callback.m
function varargout = Contact_Name_Callback(h, eventdata, handles, varargin)
%在Contact Name和Phone编辑框众获取字符串
Current_Name = get(handles.Contact_Name,'string');
Current_Phone = get(handles.Contact_Phon
www.eeworm.com/read/232704/14185057
m contact_phone_callback.m
function varargout = Contact_Phone_Callback(h, eventdata, handles, varargin)
Current_Phone = get(handles.Contact_Phone,'string');
%如果有一个为空则返回
if isempty(Current_Phone)
return
end
%在句柄结构体众获取当
www.eeworm.com/read/128477/14294578
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/128477/14294584
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/128477/14294606
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