-
Notifications
You must be signed in to change notification settings - Fork 0
/
fSearchBar.dfm
63 lines (63 loc) · 1.2 KB
/
fSearchBar.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
object SearchBar: TSearchBar
Left = 0
Top = 0
Caption = 'SearchBar'
ClientHeight = 60
ClientWidth = 382
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
DesignSize = (
382
60)
PixelsPerInch = 96
TextHeight = 13
object Label1: TLabel
Left = 8
Top = 11
Width = 49
Height = 13
Caption = 'Find What'
end
object Edit1: TEdit
Left = 88
Top = 8
Width = 286
Height = 21
Anchors = [akLeft, akTop, akRight]
TabOrder = 0
Text = 'Edit1'
OnKeyPress = Edit1KeyPress
end
object CheckBox1: TCheckBox
Left = 8
Top = 35
Width = 93
Height = 17
Alignment = taLeftJustify
Caption = 'Case Sensitive'
TabOrder = 1
end
object Button1: TButton
Left = 288
Top = 31
Width = 86
Height = 25
Caption = 'Find Backward'
TabOrder = 2
OnClick = Button1Click
end
object Button2: TButton
Left = 198
Top = 31
Width = 85
Height = 25
Caption = 'Find Forward'
TabOrder = 3
OnClick = Button2Click
end
end