Только что проверил, создал новый пакет, добавил новый компонент:
Код: Выделить всё
unit GraphicControl1;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs;
type
TGraphicControl1 = class(TGraphicControl)
private
{ Private declarations }
protected
{ Protected declarations }
public
{ Public declarations }
published
{ Published declarations }
property Align;
end;
procedure Register;
implementation
procedure Register;
begin
RegisterComponents('Additional',[TGraphicControl1]);
end;
end.
После установки и пересборки лазаруса, кидаю новый компонент на форму, есть у него Aling.
Попробуйте установить у себя пакет и проверить
PackageTest.zip
У вас нет необходимых прав для просмотра вложений в этом сообщении.