请问TeditPanel是什么控件来的??那里有下载????

解决方案 »

  1.   

    你把这个代码copy过去,自己写一个,看看是不是这个代码所生成的控件:
    unit panelEdit;interfaceuses
      SysUtils, Classes, Controls, StdCtrls, extctrls;type  TEditPanel=class(Tcustomedit)
      private
        fpanel:tpanel;
      protected
      public
        constructor create(aowner:tcomponent); override;
      published
      end;procedure Register;implementationprocedure Register;
    begin
      RegisterComponents('especiales', [TEditPanel]);
    end;constructor teditpanel.create(aowner:tcomponent);
    begin
      inherited create(nil);
      fpanel:=tpanel.Create(aowner);
      fpanel.InsertControl(self);
      twincontrol(aowner).InsertControl(self);
    end;end.
      

  2.   

    你看看这个控件有些什么功能,然后google上面搜索一下,这个是别人自己做开发的时候写的控件,可能没有下载。但是如果了解了它的用途,就很好处理了!