|
|
От: |
ak_miass
|
|
| Дата: | 21.03.05 04:29 | ||
| Оценка: | 6 (1) | ||
procedure TCustomForm.SetBorderStyle(Value: TFormBorderStyle);
begin
if FBorderStyle <> Value then
begin
FBorderStyle := Value;
AutoScroll := FBorderStyle in [bsSizeable, bsSizeToolWin];
if not (csDesigning in ComponentState) then RecreateWnd;
end;
end;