Get container size for Custom UI Component
显示 更早的评论
Hi
I would like to implement costum UI's in the app designer. For simplicity I'm using the IPAddressComponent example.
https://www.mathworks.com/help/matlab/ref/matlab.ui.componentcontainer.componentcontainer-class.html
I'm able to place the UI component in different uifigures and in specified uipanels from command line.
What I can't figure out is how I get the size of the container I'm placing the component inside. Putting a breakpoint in the setup function does not give me any information except the object itself. If I go back in the function call stack I do see a varargin, with the container handles i'm looking for.
% place in uifigure
f1 = uifigure;
f2 = uifigure;
h1 = IPAddressComponent(f1)
% place in uipanel
fig = uifigure;
p = uipanel(fig,'Position',[20 20 300 135]);
h1 = IPAddressComponent(p)
Can any of you tell me how I can get the size/position of the provided container so that I can create my component according to its size?
Regards Heine
3 个评论
Mario Malic
2021-2-25
编辑:Mario Malic
2021-2-25
This seem a bit impractical, but I am not sure whether this class is supposed to see anything you pass into it. You probably would have to redefine the setup function, but I wouldn't know how.
p = uifigure;
h1 = IPAddressComponent(p, 'Position', [0 0 p.Position(3) p.Position(4)]);
If you save the handle to the component, you can get Parent properties once the object is created. Execute changes afterwards, I think that's how it works in AppDesigner.
p.Visible = 'off'
h1 = IPAddressComponent(p)
h1.Position = h1.Parent.Position; % consider also units here, some might be relative
% other components
p.Visible = 'on'
Heine Hørup Pedersen
2021-2-25
Mario Malic
2021-2-25
编辑:Mario Malic
2021-2-25
I have edited the comment, I am not sure whether it's worthy to chase the implementation from handle classes (i have never worked with it).
Another suggestion would be to add a function in each component to set it to size of parent component so you can later invoke it on all handles that need resizing.
采纳的回答
更多回答(1 个)
Greg
2021-4-15
0 个投票
I strongly encourage using uigridlayouts. Everywhere. Every componentcontainer I build starts with a grid, and every app has a grid at the base of the figure. Using grids makes nearly all conversations about size and position irrelevant.
To your specific question though, the setup method executes before any input arguments are processed. To obtain the parent of the componentcontainer, you need to do it in the constructor, or the update method. In either of those two methods, a simple obj.Parent.Position will give you the information you want.
类别
在 帮助中心 和 File Exchange 中查找有关 Creating, Deleting, and Querying Graphics Objects 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!