UITable cells are flashing or flickering if uitable ist set back to visible

조회 수: 1 (최근 30일)
Song
Song 2015년 2월 13일
댓글: Song 2015년 2월 16일
I created a GUI with uitable.
The table has about 1000 cells and all are formatted with html.
Through a pushbutton either an UIPanel or an UITable object is toggled visible to foreground.
Every time during this toggling the content of uitable is "flashed" and rendered again, even the content is not changed.
Does anyone know how to turn this off?
Matlab version is 2011b
  댓글 수: 2
Geoff Hayes
Geoff Hayes 2015년 2월 15일
Song - are you trying to hide the table behind the panel, and then make it re-appear upon pressing a button?
Song
Song 2015년 2월 16일
I am using these lines:
if panel_is_on_top == true
set(handles.Panel, 'visible', 'off');
set(handles.Table, 'visible', 'on');
else
set(handles.Panel, 'visible', 'on');
set(handles.Table, 'visible', 'off');
end
I tried also uistack function, but the same problem :(

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

답변 (0개)

카테고리

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