Как скрыть заголовок формы
procedure TForm1.FormCreate(Sender: TObject); begin SetWindowLong( Handle, GWL_STYLE, GetWindowLong( Handle, GWL_STYLE ) and not WS_CAPTION ) ; ClientHeight := Height; end; procedure TForm1.btnCloseClick(Sender: TObject); begin Application.Terminate; end;
Комментарии