can i have a box with 3 buttons?

18 Ansichten (letzte 30 Tage)
raghavendra kandukuri
raghavendra kandukuri am 1 Okt. 2019
Hi,
Is there a way to add additional button to Inputdlg?, i know it comes with ok and cancel, i was looking to add one more to it.
for example:
prompt = {'Enter matrix size:','Enter colormap name:'};
dlg_title = 'Input';
num_lines = 1;
defaultans = {'20','hsv'};
answer = inputdlg(prompt,dlg_title,num_lines,defaultans);
so i was looking to add one more button called 'Apply all'.
Is it possible? is there any other pre defined function where i can have 2 text fileds and 3 buttons?
  2 Kommentare
Adam Danz
Adam Danz am 1 Okt. 2019
How would "apply all" behave differently than "ok"?
raghavendra kandukuri
raghavendra kandukuri am 1 Okt. 2019
Hello Adam,
I have a piece of code which is exactly like the above syntax, apart from the wordings.
so this particular code is in a loop, where in this box appears every single time the control visits the loop.
so i was looking for something like "apply all" button on it, so when i hit that button, my expected funtionality is, it doesnt pop up every single time it visits the loop, just one single time at the begining would be sufficient.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Adam Danz
Adam Danz am 1 Okt. 2019
Bearbeitet: Adam Danz am 2 Okt. 2019
"Is there a way to add additional button to Inputdlg?"
No.
One alternative is to build your own input dlg using uicontrol() but a quicker solution would be to add 1 more input to your inputdlg that merely asks if the user would like to "apply all" by entering yes/no or 1/0.
191002 093834-Input.png
prompt = {'Enter matrix size:','Enter colormap name:','Apply all (1/0)?'};
dlg_title = 'Input';
num_lines = 1;
defaultans = {'20','hsv','0'};
answer = inputdlg(prompt,dlg_title,num_lines,defaultans);

Weitere Antworten (0)

Kategorien

Mehr zu Programming finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by