How to display enter screen by GUIDE

1 次查看(过去 30 天)
Hello EveryOne,
I am making the tool by GUIDE.
I created the GUIDE as below picture:
tool.PNG
And my expected is
1/ Once click into the button "CREATE_FILES"
|_ _ The display enter screen will be appeared and I can enter the argument into that
*****For example *****
I have a function with 1 argument as below :
function create_sample(value)
expectedvalue = value;
end
And callback function is
function CREATE_FILES_Callback(hObject, eventdata, handles)
% hObject handle to CREATE_FILES (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
value = eventdata
create_sample(value)
|_ _ _ So, the value can be took by the data which is entered in the display enter screen
|_ _ _ In this case eventdata is the value which I entered at the display enter screen
Thank you in advance
  2 个评论
Dennis
Dennis 2019-5-15
I am not sure if i understand your question correctly.
I think eventdata is something completly different from what you expect it to be.
A tiny example of what i think you are trying to do (i did not use guide, therefore the handles argument is missing)
uicontrol('style','pushbutton','callback',{@MyFcn_Callback});
function MyFcn_Callback(~,~)
Mydata=inputdlg('Input please','s');
%now do something with it
%or store it setappdata/getappdata or guidata
end
Binh Huynh Thanh
Binh Huynh Thanh 2019-5-20
Hello Dennis,
Yeah, you gave me the good example.
It's my expectation.
Thank you very much.

请先登录,再进行评论。

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Migrate GUIDE Apps 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by