有人知道如何在运行时向TFlowPanel添加控件(例如TImage)吗?
问候,彼得
答案 0 :(得分:6)
将任何控件添加到父控件:
MyControl := TMyControl.Create(MyForm); // Form is the owner
MyControl.Parent := ParentControl; // Parent control is the parent
如果您愿意,也可以设置其他属性。
答案 1 :(得分:5)
与普通容器略有不同,您可以设置子控件的顺序。
OldIndex:= FlowPanel.GetControlIndex( MyControl );
FlowPanel.SetControlIndex( MyControl, OldIndex + 1 );