I'd like to attach a logo or change the whole background of an App Designer uifigure
. How can this be done?
How to customize the background of an App Designer figure?
4.1k Views Asked by asys At
2
There are 2 best solutions below
0

Unfortunately I can't comment yet, so here is another answer.
Starting at Matlab 2017a the Controller does not have a Container property anymore. This works:
warning off Matlab:structOnObject
warning off Matlab:HandleGraphics:ObsoletedProperty:JavaFrame
win = struct(struct(struct(app).Controller).PlatformHost).CEF;
data_tag = char(struct(app).Controller.ProxyView.PeerNode.getId);
win.executeJS(['dojo.style(dojo.query("[data-tag^=''' data_tag ''']")[0],"background-image","url(https://upload.wikimedia.org/wikipedia/commons/8/80/Wikipedia-logo-v2.svg")']);
There is also the possibility to find all active webwindows using
webWindows = matlab.internal.webwindowmanager.instance.findAllWebwindows();
unfortunately I did not find out yet, which window belongs to which UIFigure (you could use the Title or Position to filter, but two identical UIFigures will cause problems).
Disclaimer, Davide Miani posted that information here: https://undocumentedmatlab.com/blog/customizing-uifigures-part-1#comment-406524
If you want to set a solid background color for the entire figure, there exists a documented way to do this, e.g.:
uipanel
with no title or border (uipanel(...,'BorderType','none','Title','','BackgroundColor',[R G B])
).If you want to set an image as background of the entire figure:
Result:
If you want to set an image as background of just some region:
Result:
Notes:
The last two examples are based on these two posts: 1, 2, and the principle of operation is adding a
background-image: "..."
entry to thestyle
property of some desired UI element (which happens to be an HTMLdiv
).A tool for programmatic manipulation of App Designer figures can be found in this GitHub repository.
The example image happens to be an
.svg
, which is interesting, because we can export "regular" MATLAB figures in this format, and later use them as backgrounds for auifigure
:)