techknight Well-Known Member Licensed User Longtime User Apr 6, 2018 #1 I have a panel that I have ImageView controls that are assigned as the Panel being the parent. Problem is, if I do ImageView1.Top = Panel1.Top it puts the control in the Center instead of the top, so for me that is a bit unexpected behavior. any ideas?
I have a panel that I have ImageView controls that are assigned as the Panel being the parent. Problem is, if I do ImageView1.Top = Panel1.Top it puts the control in the Center instead of the top, so for me that is a bit unexpected behavior. any ideas?
KMatle Expert Licensed User Longtime User Apr 6, 2018 #2 It is inside the panel so top = 0 will work. As the panel isn't at the top of the activity, it's top is not 0. So it works as expected. Upvote 0
It is inside the panel so top = 0 will work. As the panel isn't at the top of the activity, it's top is not 0. So it works as expected.