Crate a changeable label in programmable App (GUI)

16 visualizaciones (últimos 30 días)
Parker
Parker el 5 de Ag. de 2022
Respondida: Mohammad Sami el 6 de Ag. de 2022
Hi, I'm new to program with GUIs.
I'm trying to create a very easy GUI that can have an updateable outcome. For example I have two uieditfield functinos, so a user can type a value for X and a value for Y in each uieditfied.
And then there is a uilabel that gives a Z value of X+Y in strings.
This is my attempt so far:
fig = uifigure;
edt1...
edt2...
btnUpdate = uibutton(fig,'push',...
'Text','Update',...
'Position',[350, 170, 100, 22],...
'ButtonPushedFcn', @(btn,event) UpdateButtonPushed(label1));
function UpdateButtonPushed(label1)
Z = X + Y;
text = sprintf('%s\n',Z);
label1 = uilabel(Text',text,'Position',[100 100 100 32]);
end
I skipped the two uieditfield functions they are very standard.
The above code works but only problem is that the updated label will be created in a new pop up window.
I have tried this following code try to force the label being created within the GUI but it just pops up an error message
label1 = uilabel('Parent', fig, Text',text,'Position',[100 100 100 32]);
Unrecognized function or variable 'fig'.
Please let me know if there's a way around this or I if needed to use some function else than uilabel.
Thank you for your time in advence.

Respuestas (1)

Mohammad Sami
Mohammad Sami el 6 de Ag. de 2022
I am assuming that you are using app designer. If so you should place the uilabel in the UI on the canvas. Then you can access it in your code without having to create new uilabel every time someone updates the values.
if true
app.label1.Text = text;
end

Categorías

Más información sobre Develop Apps Using App Designer 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