设置 top=0,bottom=0,left=0,right=0 或 width=100% , height=100% 之间有什么区别
子组件可以通过设置其父组件的所有宽度和高度 属性
top=0,right=0,bottom=0,left=0
但是可以通过设置子组件属性来完成相同的操作
width=100%,height=100%
,那么这两种方法有什么区别?如果可能的话,请提前给出优点/缺点。thx。
the child component can take all its parent width and height by setting its
properties
top=0,right=0,bottom=0,left=0
But same can be done by setting the child component properties
width=100%,height=100%
so whats the difference between these two approaches ?? plz give advantages/disadvantages if possible .thx in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它们在 BasicLayout 中具有相同的效果。唯一的不同可能在于性能。在其他布局(如 VerticalLayout 和 HorizontalLayout)中,我认为约束(顶部、右侧等)没有任何影响,但百分比值有任何影响。
They both have the same effect in a BasicLayout. The only different might be in performance. In other layouts like VerticalLayout and HorizontalLayout I don't think the constraints (top, right, etc) have any effect, but the percentage values do.
使用宽度/高度和约束来测量使用笔划的 GraphicElements 略有不同。这篇博文更详细地解释了:http://flexponential.com/2010/03/14/measuring-a-graphicelement-with-a-中风-in-a-group/
Measuring GraphicElements with strokes is slightly different between using width/height and constraints. This blog post explains in more detail: http://flexponential.com/2010/03/14/measuring-a-graphicelement-with-a-stroke-in-a-group/