D dear Unregistered / Unconfirmed GUEST, unregistred user! 2000-08-01 #1 同时要动态生成后,在它的事件中写我的代码。回答标题上的问题也可。
L lczhuohuo Unregistered / Unconfirmed GUEST, unregistred user! 2000-08-01 #4 所谓的固定区域是什么意思?是相对于窗口的边框吗? 如果是这样的话,就不用麻烦了,使用组件的anchors 属性,综合几个方向就可以达到目的了。
Y yaoyao Unregistered / Unconfirmed GUEST, unregistred user! 2000-08-01 #5 var x : TButton; begin x := TButton.Create(self); x.Parent := Form1; x.Left := 20; //特定位置 x.Top := 20; x.Action := Action1.ActionList.Actions[0] ; //对应Action1的第一个特定事件
var x : TButton; begin x := TButton.Create(self); x.Parent := Form1; x.Left := 20; //特定位置 x.Top := 20; x.Action := Action1.ActionList.Actions[0] ; //对应Action1的第一个特定事件