How to design the help document in GUI?

3 visualizaciones (últimos 30 días)
QiQin Zhan
QiQin Zhan el 28 de Feb. de 2013
I've just finished a GUI program.And I'm going to design a 'help menu' telling people how to use the program.If I click on the help menu,the help document will appear.Would you please tell me how to design it?

Respuesta aceptada

Sean de Wolski
Sean de Wolski el 28 de Feb. de 2013
Editada: Sean de Wolski el 28 de Feb. de 2013
Use a uimenu and have the callback call web() with your html file. Or poof a new figure that contains a text box with the info you want.
doc uimenu
doc web
Here's a simple example:
hFig = figure('menubar','none','Toolbar','figure');
surf(peaks)
hM = uimenu('parent',hFig,'Label','Help');
uimenu(hM,'Label','Help Contents','Callback',@(~,~)web('www.google.com'));
uimenu(hM,'Label','About the Author','Callback',@(~,~)msgbox('Sean was here!'));

Más respuestas (1)

Jan
Jan el 28 de Feb. de 2013
Matlab users are used to read Matlab's help files. Therefore I'd follow the style of the doc files, add the html file to the standard doc browser also and use FEX: popupPanel to display this HTML page when the local help menu is triggered.
  3 comentarios
QiQin Zhan
QiQin Zhan el 28 de Feb. de 2013
popupPanel can display doc help. Would you please say something more detail on how to make a doc help so that I can use the popupPanel.
Jan
Jan el 28 de Feb. de 2013
@Sean: Correct, but in a deployed application you can open the same HTML page in a browser instead.
@Chan: You can use standard HTML pages, which can be view by a standard browser also such that you can place it a web page also.

Iniciar sesión para comentar.

Categorías

Más información sobre MATLAB Compiler en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by