65 lines
1.2 KiB
Plaintext
65 lines
1.2 KiB
Plaintext
object fMakerNote: TfMakerNote
|
|
Left = 200
|
|
Top = 112
|
|
Caption = 'EXIF Maker Note'
|
|
ClientHeight = 626
|
|
ClientWidth = 579
|
|
Color = clBtnFace
|
|
Font.Charset = DEFAULT_CHARSET
|
|
Font.Color = clWindowText
|
|
Font.Height = -11
|
|
Font.Name = 'Tahoma'
|
|
Font.Style = []
|
|
OldCreateOrder = True
|
|
OnActivate = FormActivate
|
|
PixelsPerInch = 96
|
|
TextHeight = 13
|
|
object Panel1: TPanel
|
|
Left = 0
|
|
Top = 0
|
|
Width = 579
|
|
Height = 38
|
|
Align = alTop
|
|
BevelOuter = bvNone
|
|
TabOrder = 0
|
|
object lblMakerNotes: TLabel
|
|
Left = 8
|
|
Top = 13
|
|
Width = 64
|
|
Height = 13
|
|
Caption = 'Maker Notes:'
|
|
end
|
|
object cmbMakerNotes: TComboBox
|
|
Left = 78
|
|
Top = 9
|
|
Width = 145
|
|
Height = 21
|
|
Style = csDropDownList
|
|
ItemHeight = 13
|
|
TabOrder = 0
|
|
OnChange = cmbMakerNotesChange
|
|
Items.Strings = (
|
|
'Canon'
|
|
'Nikon')
|
|
end
|
|
end
|
|
object ListView1: TListView
|
|
Left = 0
|
|
Top = 38
|
|
Width = 579
|
|
Height = 588
|
|
Align = alClient
|
|
Columns = <
|
|
item
|
|
Caption = 'Tag Name'
|
|
Width = 130
|
|
end
|
|
item
|
|
Caption = 'Value'
|
|
Width = 600
|
|
end>
|
|
TabOrder = 1
|
|
ViewStyle = vsReport
|
|
end
|
|
end
|