Delphi .dpr 프로젝트 원본 파일

926 단어 Delphi
program Project1

uses

  Forms,

  Unit1 in 'Unit1.pas';

{$R *.res}

begin

  Application.Initializ;

  Application.CreateForm(TForm1, Form1);

  Application.Run;

end.
 
unit Unit1;



interface



uses

  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,

  Dialogs;



type

  TForm1 = class(TForm)

  private

    { Private declarations }

  public

    { Public declarations }

  end;



var

  Form1: TForm1;



implementation



{$R *.dfm}



end.

object Form1: TForm1

  Left = 223

  Top = 113

  Width = 870

  Height = 640

  Caption = 'Form1'

  Color = clBtnFace

  Font.Charset = DEFAULT_CHARSET

  Font.Color = clWindowText

  Font.Height = -11

  Font.Name = 'Tahoma'

  Font.Style = []

  OldCreateOrder = False

  PixelsPerInch = 96

  TextHeight = 13

end

좋은 웹페이지 즐겨찾기