37 lines
723 B
ObjectPascal
37 lines
723 B
ObjectPascal
|
|
unit uViewInicio;
|
||
|
|
|
||
|
|
interface
|
||
|
|
|
||
|
|
uses
|
||
|
|
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
||
|
|
Dialogs, uCustomView, dxLayoutControl, Grids, DBGrids, cxControls, uViewBase;
|
||
|
|
|
||
|
|
type
|
||
|
|
TCustomView1 = class(TCustomView, IViewInicio)
|
||
|
|
dxLayoutControl1Group_Root: TdxLayoutGroup;
|
||
|
|
dxLayoutControl1: TdxLayoutControl;
|
||
|
|
dxLayoutControl1Group1: TdxLayoutGroup;
|
||
|
|
DBGrid1: TDBGrid;
|
||
|
|
dxLayoutControl1Item1: TdxLayoutItem;
|
||
|
|
private
|
||
|
|
function Control : TControl;
|
||
|
|
public
|
||
|
|
{ Public declarations }
|
||
|
|
end;
|
||
|
|
|
||
|
|
var
|
||
|
|
CustomView1: TCustomView1;
|
||
|
|
|
||
|
|
implementation
|
||
|
|
|
||
|
|
{$R *.dfm}
|
||
|
|
|
||
|
|
{ TCustomView1 }
|
||
|
|
|
||
|
|
function TCustomView1.Control: TControl;
|
||
|
|
begin
|
||
|
|
Result := Self;
|
||
|
|
end;
|
||
|
|
|
||
|
|
end.
|