- This looks like an internal Matlab bug. Specifically, after deleting nodes, the uitree's internal StyleConfigurationStorage property isn't updated, leaving the deleted (invalid) TreeNode handle behind. When a subsequent addStyle tries to access StyleConfigurationStorage, the invalid (deleted) tree node(s) cause an error when they are accessed. The workaround is to remove the uistyle (using the removeStyle() function) before deleting any tree node.
- HandleVisibility does NOT control the node visibility - it controls whether or not the handle is visible to functions such as findobj(). See https://www.mathworks.com/help/matlab/creating_plots/preventing-access-to-figures-and-axes.html
How to add multiple styles to my uiTree?
11 次查看(过去 30 天)
显示 更早的评论
*** using MATLAB 2021b ***
Hello,
I have a simple uiTree, with several nodes. I'd like to update it's nodes (by deleting existing node and creating new one), and each time after node re-creation I'd like to add style to that specific node.
For some reason its working only one time(!). On the second attemp I get the following warning and node color doesn't change.
Warning: Invalid or deleted object.
Strangely enough, if I try to do the same thing, but add style to the entire tree (NOT to a specifc node), then there is no problem at all.
Please see code below:
%% step 1 - create tree
fig = uifigure;
t1 = uitree(fig);
n1 = uitreenode(t1);
n1.Text = 'Node 1';
n2 = uitreenode(n1);
n3 = uitreenode(n1);
n3.Text = 'Node 3';
n2.Text = 'Node 2';
expand(t1 , 'all')
%% step 2 - re-create main node and add style_1 (first delete)
nodeStyle_1 = uistyle;
nodeStyle_1.FontColor = 'red';
% 1st delete - working
n1.delete
n1 = uitreenode(t1);
n1.Text = 'Node 1a';
n2 = uitreenode(n1);
n2.Text = 'Node 2a';
n3 = uitreenode(n1);
n3.Text = 'Node 3a';
expand(t1 , 'all')
addStyle(t1 , nodeStyle_1 , 'node' , n2)
% addStyle(t1 , nodeStyle_1)
%% step 3 - re-create main node and add style_2 (second delete)
nodeStyle_2 = uistyle;
nodeStyle_2.FontColor = 'yellow';
n1.delete
n1 = uitreenode(t1);
n1.Text = 'Node 1b';
n2 = uitreenode(n1);
n2.Text = 'Node 2b';
n3 = uitreenode(n1);
n3.Text = 'Node 3b';
expand(t1 , 'all')
addStyle(t1 , nodeStyle_2 , 'node' , n2)
% addStyle(t1 , nodeStyle_2)
What am I missing here?
* if there is an alternative way to "update" nodes text, without using the "delete" method I'd like to hear about it. I've tried to make it invisible, by:
n1.HandleVisibility = 'off';
but it doesn't do anything...?! (I was expecting the n1 node to disappear...)
THANKS !!!
0 个评论
采纳的回答
Yair Altman
2022-1-9
2 个评论
Zhaoyu Gong
2023-9-27
Just encountered the same problem as you. It is frustrating that removeStyle cannot be applied to node. I personally added a boolean flag in the NodeData to indicate the style. After deleting any node, I reapply the style according to the flag value.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Migrate GUIDE Apps 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!