B BaKuBaKu Unregistered / Unconfirmed GUEST, unregistred user! 2000-09-28 #2 没搞错吧。So easy ? 在 Object Inspector 中把 Panel 的 Align 属性设为 alClient 或在代码里写: Panel1.Align := alClient; 呵呵,60 分拿来。
没搞错吧。So easy ? 在 Object Inspector 中把 Panel 的 Align 属性设为 alClient 或在代码里写: Panel1.Align := alClient; 呵呵,60 分拿来。
B bluepeach Unregistered / Unconfirmed GUEST, unregistred user! 2000-09-28 #3 哈,来晚了。 如果你只是要Panel随FORM的比例而变化的话,那么 procedure TForm1.form1resize(Sender: TObject); begin panel1.Width:=panel1.width*form1的缩放比例; panel1.height:=panel1.height*form1的缩放比例; end;
哈,来晚了。 如果你只是要Panel随FORM的比例而变化的话,那么 procedure TForm1.form1resize(Sender: TObject); begin panel1.Width:=panel1.width*form1的缩放比例; panel1.height:=panel1.height*form1的缩放比例; end;
R robertcool Unregistered / Unconfirmed GUEST, unregistred user! 2000-09-28 #4 Panel1.Align := alClient; Panel1.Align := alRight; Left,top,bottom
A Another_eYes Unregistered / Unconfirmed GUEST, unregistred user! 2000-09-28 #5 如果你只希望panel随form按比例变化而不是和form一样大, 那么用D4, D5的话有个 很简单的方法, 设置Anchors = []; (将Left, Top, Right, Bottom都置成False)
如果你只希望panel随form按比例变化而不是和form一样大, 那么用D4, D5的话有个 很简单的方法, 设置Anchors = []; (将Left, Top, Right, Bottom都置成False)
X xjnxjn Unregistered / Unconfirmed GUEST, unregistred user! 2000-09-28 #7 another_eyes的方法中好象left,top,right,bottom设成true才对。