How to customize the background of an App Designer figure?
问题 I'd like to attach a logo or change the whole background of an App Designer uifigure . How can this be done? 回答1: If you want to set a solid background color for the entire figure , there exists a documented way to do this, e.g.: % When creating a new uifigure: fig = uifigure('Color',[R G B]) % if the uifigure already exists: fig.Color = [R G B]; If you want to change the background color of just some region , you can add a uipanel with no title or border ( uipanel(...,'BorderType','none',