프로젝트 시작

This commit is contained in:
pagewiz@naver.com
2024-12-01 10:45:32 +09:00
parent b662ad98d0
commit f70c981584
7 changed files with 1253 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
object Form1: TForm1
Left = 0
Top = 0
Caption = #47700#51064#54268
ClientHeight = 441
ClientWidth = 624
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Style = []
TextHeight = 15
end
+24
View File
@@ -0,0 +1,24 @@
unit MainUnit;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs;
type
TForm1 = class(TForm)
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
end.
+14
View File
@@ -0,0 +1,14 @@
object Form1: TForm1
Left = 0
Top = 0
Caption = 'Form1'
ClientHeight = 441
ClientWidth = 624
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Style = []
TextHeight = 15
end