Filter löschen
Filter löschen

update box with TextAeaValuechanged callback don't run

1 Ansicht (letzte 30 Tage)
Luca Re
Luca Re am 24 Jun. 2023
Kommentiert: Luca Re am 26 Jun. 2023
hi, when i change text in this area nothing happens
Am I doing something wrong or should I select Add ValueChangingFcn callback?

Akzeptierte Antwort

Cris LaPierre
Cris LaPierre am 24 Jun. 2023
It looks like you have already defined a callback function for when the value of the text area is changed. Have you added any code to it? Without seeng the code in the callback function, as well as knowing what it is you expect to happen, it's really difficult to provide specific feedback.
See the Adding callbacks in App Designer page for more details.
  15 Kommentare
Cris LaPierre
Cris LaPierre am 26 Jun. 2023
If you want the callback to execute when you are changing the value programmatically, you just need to call that function inside the callback function that is executing.
% Button pushed function: Button
function ButtonPushed(app, event)
[file,path] = uiputfile ({'*.*'}, 'Select a file');
[~,name,~] = fileparts(file);
app.TextArea.Value=name;
TextAreaValueChanged(app, app.TextArea)
end
Luca Re
Luca Re am 26 Jun. 2023
yes, in fact I have already done this

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Graphics Object Properties 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