1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| function startframeperf_Callback(hObject, eventdata, handles)
% hObject handle to startframeperf (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Hints: get(hObject,'String') returns contents of startframeperf as text
% str2double(get(hObject,'String')) returns contents of startframeperf as a double
% --- Executes during object creation, after setting all properties.
function startframeperf_CreateFcn(hObject, eventdata, handles)
% hObject handle to startframeperf (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called
% Hint: edit controls usually have a white background on Windows.
% See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
set(hObject,'BackgroundColor','white');
end |
Partager