App Designer get element in focus

조회 수: 6 (최근 30일)
ROL
ROL 2019년 1월 25일
답변: Suraj Kumar 2024년 7월 30일
Hi there,
I switched from GUIDE to the App Designer some time ago, and find that a lot of important functionalities are now missing. One particular feature is the possibility to get a handle to the current GUI element in focus. In my particular example, I have 2 ListBox elements in my application and I want to add a shortcut to them for modification. The KeyPress function is only possible on the uifigure level, so I need a way to distinguish between the two ListBox elements.
Is this possible in some way or does this feature not exist at the moment.
Thanks, Rasmus
  댓글 수: 2
Quy
Quy 2020년 2월 18일
Looking for an answer for this question as well.
Isak Idrizi
Isak Idrizi 2023년 10월 24일
me too.

댓글을 달려면 로그인하십시오.

답변 (1개)

Suraj Kumar
Suraj Kumar 2024년 7월 30일
Hi,
I understand that you are facing difficulty in getting the handle of the current GUI element which is in focus. As a workaround you can track the focus manually by setting up callbacks for each interactive component and storing the handle of the currently focused component in a property.
Consider adding a private property to store focussed component as shown below:
properties (Access = private)
FocusedComponent
end
Then implement the onKeyPress callback to handle key press events based on which ListBox is currently focussed.
You can refer to the code below for better understanding:
function onKeyPress(app, event)
if isempty(app.FocusedComponent)
return;
end
switch app.FocusedComponent
case app.ListBox1
% Handle key press for ListBox1
disp('Key pressed in ListBox1');
case app.ListBox2
% Handle key press for ListBox2
disp('Key pressed in ListBox2');
end
end
Please refer to the following documentation link on “callbacks” in App Designer :
Hope this helps!

카테고리

Help CenterFile Exchange에서 App Building에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by