2026-07-11 15:55:22 +08:00

180 lines
3.1 KiB
Plaintext

object Form3: TForm3
Left = 431
Top = 245
BorderStyle = bsDialog
Caption = 'Modify Font'
ClientHeight = 284
ClientWidth = 360
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
Position = poMainFormCenter
OnCreate = FormCreate
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object Label1: TLabel
Left = 7
Top = 60
Width = 31
Height = 13
Caption = 'Width:'
end
object Label2: TLabel
Left = 7
Top = 87
Width = 34
Height = 13
Caption = 'Height:'
end
object Bevel1: TBevel
Left = 1
Top = 249
Width = 360
Height = 3
end
object Label3: TLabel
Left = 7
Top = 9
Width = 32
Height = 13
Caption = 'Sel ID:'
end
object Label4: TLabel
Left = 7
Top = 34
Width = 31
Height = 13
Caption = 'Name:'
end
object SpinEdit1: TSpinEdit
Left = 50
Top = 57
Width = 52
Height = 22
MaxValue = 250
MinValue = 0
TabOrder = 0
Value = 2
OnChange = SpinEdit1Change
end
object SpinEdit2: TSpinEdit
Left = 50
Top = 84
Width = 52
Height = 22
MaxValue = 250
MinValue = 0
TabOrder = 1
Value = 2
OnChange = SpinEdit2Change
end
object Button1: TButton
Left = 85
Top = 259
Width = 60
Height = 21
Caption = 'Modify'
TabOrder = 2
OnClick = Button1Click
end
object Button2: TButton
Left = 210
Top = 259
Width = 60
Height = 21
Caption = 'Cancel'
TabOrder = 3
OnClick = Button2Click
end
object Button3: TButton
Left = 11
Top = 122
Width = 89
Height = 20
Caption = 'BMP File Import'
TabOrder = 4
OnClick = Button3Click
end
object Button4: TButton
Left = 11
Top = 184
Width = 89
Height = 20
Caption = 'Clear'
TabOrder = 5
OnClick = Button4Click
end
object ScrollBox1: TScrollBox
Left = 111
Top = 6
Width = 248
Height = 239
BevelInner = bvNone
BevelOuter = bvNone
Ctl3D = False
ParentCtl3D = False
TabOrder = 6
object Image1: TImage
Left = 1
Top = 1
Width = 96
Height = 96
Cursor = crCross
Visible = False
end
end
object SpinEdit3: TSpinEdit
Left = 50
Top = 6
Width = 52
Height = 22
MaxValue = 0
MinValue = 0
ReadOnly = True
TabOrder = 7
Value = 2
end
object Button5: TButton
Left = 11
Top = 216
Width = 89
Height = 20
Caption = 'Reset'
TabOrder = 8
OnClick = Button5Click
end
object Button6: TButton
Left = 11
Top = 153
Width = 89
Height = 20
Caption = 'BMP File Export'
TabOrder = 9
OnClick = Button6Click
end
object Edit1: TEdit
Left = 50
Top = 32
Width = 51
Height = 21
ReadOnly = True
TabOrder = 10
end
object OpenDialog1: TOpenDialog
Filter = 'bmp file|*.bmp'
Left = 130
Top = 180
end
object SaveDialog1: TSaveDialog
DefaultExt = 'bmp'
Filter = 'BMP File|*.bmp'
Left = 172
Top = 178
end
end