Контрольная работа: Построение графического интерфейса в системе Matlab
% handles structure with handles and user data (see GUIDATA)
printdlg (handles.figure1)
% –
function CloseMenuItem_Callback (hObject, eventdata, handles)
% hObject handle to CloseMenuItem (see GCBO)
% eventdata reserved – to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
selection = questdlg(['Close ' get (handles.figure1,'Name') '?'],…
['Close ' get (handles.figure1,'Name') '…'],…
'Yes', 'No', 'Yes');
if strcmp (selection, 'No')
return;
end
delete (handles.figure1)
% – Executes on selection change in popupmenu1.
function popupmenu1_Callback (hObject, eventdata, handles)
% hObject handle to popupmenu1 (see GCBO)
% eventdata reserved – to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Hints: contents = get (hObject, 'String') returns popupmenu1 contents as cell array
% contents {get(hObject, 'Value')} returns selected item from popupmenu1
% – Executes during object creation, after setting all properties.
function popupmenu1_CreateFcn (hObject, eventdata, handles)
% hObject handle to popupmenu1 (see GCBO)
% eventdata reserved – to be defined in a future version of MATLAB
% handles empty – handles not created until after all CreateFcns called
% Hint: popupmenu controls usually have a white background on Windows.
% See ISPC and COMPUTER.
if ispc && isequal (get(hObject, 'BackgroundColor'), get (0,'defaultUicontrolBackgroundColor'))