-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathuExcelDemo.dfm
130 lines (130 loc) · 2.62 KB
/
uExcelDemo.dfm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
object MainForm: TMainForm
Left = 0
Top = 0
Caption = 'MainForm'
ClientHeight = 577
ClientWidth = 1126
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
OnDestroy = FormDestroy
DesignSize = (
1126
577)
PixelsPerInch = 96
TextHeight = 13
object MainLabel: TLabel
Left = 8
Top = 8
Width = 89
Height = 19
Caption = 'Simple Excel'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -16
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
end
object OpenFileBtn: TButton
Left = 9
Top = 104
Width = 193
Height = 25
Caption = 'Open File'
TabOrder = 2
OnClick = OpenFileBtnClick
end
object PageControl: TPageControl
Left = 208
Top = 0
Width = 918
Height = 577
Align = alRight
Anchors = [akLeft, akTop, akRight, akBottom]
TabOrder = 4
end
object SaveFileBtn: TButton
Left = 9
Top = 135
Width = 193
Height = 25
Caption = 'Save File'
TabOrder = 3
OnClick = SaveFileBtnClick
end
object CreateNewBtn: TButton
Left = 8
Top = 42
Width = 193
Height = 25
Caption = 'Create File'
TabOrder = 0
OnClick = CreateNewBtnClick
end
object ExcelPanel: TPanel
Left = 8
Top = 434
Width = 185
Height = 135
Anchors = [akLeft, akBottom]
TabOrder = 5
object AddSheetBtn: TButton
Left = 8
Top = 8
Width = 169
Height = 25
Caption = 'AddSheetBtn'
TabOrder = 0
OnClick = AddSheetBtnClick
end
object AddRowBtn: TButton
Left = 8
Top = 70
Width = 169
Height = 25
Caption = 'AddRowBtn'
TabOrder = 1
OnClick = AddRowBtnClick
end
object AddColBtn: TButton
Left = 8
Top = 101
Width = 169
Height = 25
Caption = 'AddColBtn'
TabOrder = 2
OnClick = AddColBtnClick
end
object RemSheetBtn: TButton
Left = 8
Top = 39
Width = 169
Height = 25
Caption = 'RemSheetBtn'
TabOrder = 3
OnClick = RemSheetBtnClick
end
end
object OpenDefaultFileBtn: TButton
Left = 8
Top = 73
Width = 194
Height = 25
Caption = 'OpenDefaultFileBtn'
TabOrder = 1
OnClick = OpenDefaultFileBtnClick
end
object SaveDlg: TSaveDialog
Left = 56
Top = 176
end
object OpenDlg: TOpenDialog
Left = 16
Top = 176
end
end