appdesigner setting uistyle back to default
15 次查看(过去 30 天)
显示 更早的评论
hello all
I have an app in appdesigner with a uitable
I can easily use uistyle to set a cells background color, for example...
s = uistyle('BackgroundColor','blue');
addStyle(app.UITable , s, 'cell', indicies);
My problem is that i cannot fiigure out how to set that cell back to default.
(note, i know of the removestyle command, but that seems to act on the whole table, i just need the cell to be reset to default)
Documentation seems to imply i can do
s = uistyle('BackgroundColor',[]);
addStyle(app.UITable , s, 'cell', indicies);
but that does nothing apparenlty.
Am i missing something?
0 个评论
采纳的回答
Cameron
2023-3-23
removeStyle(app.UITable)
3 个评论
Cameron
2023-3-23
My apologies. I forgot to include this bit. removeStyle(comp,ordernum) allows you to remove specific styles. So you can put a second arguement in that dictates which of your styles to remove. For example:
removeStyle(app.UITable,1)
%or
removeStyle(app.UITable,2)
%or whatever the order of your style is
To check this, use
app.UITable.StyleConfigurations
更多回答(1 个)
Earl Davis
2023-3-28
编辑:Earl Davis
2023-3-28
function destyle(~,itm,target,indices)
%Remove the style from any single piece of a stylable thing. For example,
%whack an icon from a single cell. Just a first attempt, could probably be improved on.
%
%itm: any uiThing for which the addStyle command produces a StyleConfiguration property
%target: a feature of the itm (e.g., row, column, cell)
%indices: which one izzat?
%
%
%Usage: app.destyle(app.tblCI,"cell",indices);
oldStyle = itm.StyleConfigurations; %Make new friends, but keep the old.
removeStyle(itm);%Whack all that
for idx = 1:size(oldStyle,1) %Runs fast enough that I didn't even try to vectorize it
%Reimpose all of the styles EXCEPT those matching the target and indices
if (oldStyle.Target(idx) ~= target) || any(oldStyle.TargetIndex{idx} ~= indices)
addStyle(itm,oldStyle.Style(idx),oldStyle.Target(idx),oldStyle.TargetIndex{idx});
end
end
end
2 个评论
Earl Davis
2023-4-8
I have been working with Matlab more or less continually since about 1991. The single most important lesson I've learned is that like Ogres (and onions, and parfait), Matlab has layers. I peel layers all the time, often by accident (sometimes due to road rash), and never seem to know in advance what I'll find under the next one.
My personal favorite was discovering how to co-simulate Simulink/Stateflow with Excel for an aircraft pneumatic problem and...well, nevermind.
I was peeling something completely different & stumbled across the full syntax for removeStyle, as if for the first time. Naturally, I had to try it.
function destyle(~,itm,target,indices)
idx = 1;
while idx <= size(itm.StyleConfigurations,1)
if (itm.StyleConfigurations.Target(idx) == target) || all(itm.StyleConfigurations.TargetIndex{idx} == indices)
removeStyle(itm,idx);
idx = idx - 1;
end
idx = idx + 1;
end
end
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Environment and Settings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!