TreeView inside a ListView
1 回表示 (過去 30 日間)
古いコメントを表示
Is it possible to add a TreeView inside a ListView
Example :
like above Treeview with Listview. Please any one give a valuable suggestion.
1 件のコメント
Xiaoning.Wang
2020 年 12 月 30 日
hello Karthikeyan S
I want to use the treeview, but I don't the Treeview control in GUI, how to use the TreeView.
I learn some information use it by mscomctl.ocx (AcitveX).
but I don't know to use the Acitve X
could you expalin your the treeview? Thank you.
採用された回答
Walter Roberson
2019 年 12 月 24 日
This does not appear to be a MATLAB question. Gtk is not part of MATLAB.
There is the File Exchange contribution https://www.mathworks.com/matlabcentral/fileexchange/58274-treeview which could in theory be extended, but there is no corresponding listview contribution.
There is the MATLAB component uitree() but there is no corresponding list facility.
There is uicontrol('style', 'list'), but the only way to put trees inside of those is to be using "traditional" figures and make changes at the Java level.
2 件のコメント
Walter Roberson
2019 年 12 月 24 日
Your options are:
- start from scratch and write all of the graphics facilities yourself
- start with a FEX contribution such as the treeview that I linked to, and modify that take on whatever further roles you need; or
- use "traditional" figures and invoke java tree facilities
- use loadlibrary() or equivalent and call into external graphics routines
To be more explicit: what you are asking for is not supported in MATLAB.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Data Distribution Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!