function varargout = GUI20(varargin)
% GUI20 MATLAB code for GUI20.fig
% GUI20, by itself, creates a new GUI20 or raises the existing
% singleton*.
%
% H = GUI20 returns the handle to a new GUI20 or the handle to
% the existing singleton*.
%
% GUI20('CALLBACK',hObject,eventData,handles,...) calls the local
% function named CALLBACK in GUI20.M with the given input arguments.
%
% GUI20('Property','Value',...) creates a new GUI20 or raises the
% existing singleton*. Starting from the left, property value pairs are
% applied to the GUI before GUI20_OpeningFcn gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to GUI20_OpeningFcn via varargin.
%
% *See GUI Options on GUIDE's Tools menu. Choose "GUI allows only one
% instance to run (singleton)".
%
% See also: GUIDE, GUIDATA, GUIHANDLES % Edit the above text to modify the response to help GUI20 % Last Modified by GUIDE v2. -Jan- :: % Begin initialization code - DO NOT EDIT
gui_Singleton = ;
gui_State = struct('gui_Name', mfilename, ...
'gui_Singleton', gui_Singleton, ...
'gui_OpeningFcn', @GUI20_OpeningFcn, ...
'gui_OutputFcn', @GUI20_OutputFcn, ...
'gui_LayoutFcn', [] , ...
'gui_Callback', []);
if nargin && ischar(varargin{})
gui_State.gui_Callback = str2func(varargin{});
end if nargout
[varargout{:nargout}] = gui_mainfcn(gui_State, varargin{:});
else
gui_mainfcn(gui_State, varargin{:});
end
% End initialization code - DO NOT EDIT % --- Executes just before GUI20 is made visible.
function GUI20_OpeningFcn(hObject, eventdata, handles, varargin)
% This function has no output args, see OutputFcn.
% hObject handle to figure
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% varargin command line arguments to GUI20 (see VARARGIN) % Choose default command line output for GUI20
handles.output = hObject; A = imread('按钮.jpg');
set(handles.pushbutton1,'CData',A); % Update handles structure
guidata(hObject, handles); % UIWAIT makes GUI20 wait for user response (see UIRESUME)
% uiwait(handles.figure1); % --- Outputs from this function are returned to the command line.
function varargout = GUI20_OutputFcn(hObject, eventdata, handles)
% varargout cell array for returning output args (see VARARGOUT);
% hObject handle to figure
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA) % Get default command line output from handles structure
varargout{} = handles.output; % --- Executes on button press in pushbutton1.
function pushbutton1_Callback(hObject, eventdata, handles)
% hObject handle to pushbutton1 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
修饰按钮: