How do I assign a context menu to only the column header row of a uitable?

조회 수: 2 (최근 30일)
Will
Will 2017년 1월 12일
편집: Will 2017년 1월 17일
Using MATLAB R2015b... I'm doing something like this:
Table = uitable(...);
TableMenu = uicontextmenu;
MenuItem1 = uimenu(TableMenu,'Label','option 1');
MenuItem2 = uimenu(TableMenu,'Label','option 2');
set(Table,'UIContextMenu',TableMenu)
This results in the context menu appearing whenever there's a right-click anywhere within the table. But I only want it to appear when right clicking on the column header of the table.
I access the column header like so:
jTable = findjobj(Table);
jColHead = get(jTable,'ColumnHeader');
But I don't know how to assign the MATLAB uicontext menu to this or if it's possible ( findjobj(TableMenu) doesn't return anything usable but the AccessibleContext property of jColHead looks promising).
Anyone know of a way to do this?
Alternatively, I would forget assigning the context menu at all and do set(TableMenu,'Visible','on') when right click detected on the column header (I know it's within 25 pixels south of the top of the table) within Table's ButtonDownFcn.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Interactive Control and Callbacks에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by