File: notebooktestfrm.lfm

package info (click to toggle)
lazarus 4.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 275,760 kB
  • sloc: pascal: 2,341,904; xml: 509,420; makefile: 348,726; cpp: 93,608; sh: 3,387; java: 609; perl: 297; sql: 222; ansic: 137
file content (72 lines) | stat: -rw-r--r-- 1,568 bytes parent folder | download | duplicates (3)
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
object Form1: TForm1
  Left = 270
  Height = 300
  Top = 131
  Width = 700
  Caption = 'Notebook testing'
  ClientHeight = 300
  ClientWidth = 700
  Position = poMainFormCenter
  LCLVersion = '2.3.0.0'
  object Button1: TButton
    Left = 0
    Height = 25
    Top = 0
    Width = 89
    AutoSize = True
    Caption = 'Create Page'
    OnClick = Button1Click
    TabOrder = 0
  end
  object Button2: TButton
    AnchorSideLeft.Control = Button1
    AnchorSideLeft.Side = asrBottom
    AnchorSideTop.Control = Button1
    AnchorSideTop.Side = asrCenter
    Left = 89
    Height = 25
    Top = 0
    Width = 51
    AutoSize = True
    Caption = 'Back'
    OnClick = Button2Click
    TabOrder = 1
  end
  object Button3: TButton
    AnchorSideLeft.Control = Button2
    AnchorSideLeft.Side = asrBottom
    AnchorSideTop.Control = Button2
    AnchorSideTop.Side = asrCenter
    Left = 140
    Height = 25
    Top = 0
    Width = 69
    AutoSize = True
    Caption = 'Forward'
    OnClick = Button3Click
    TabOrder = 2
  end
  object Label1: TLabel
    AnchorSideLeft.Control = Button3
    AnchorSideLeft.Side = asrBottom
    AnchorSideTop.Control = Button3
    AnchorSideTop.Side = asrCenter
    Left = 215
    Height = 15
    Top = 5
    Width = 67
    BorderSpacing.Left = 6
    Caption = '0 pages total'
  end
  object Notebook1: TNotebook
    AnchorSideTop.Control = Button1
    AnchorSideTop.Side = asrBottom
    Left = 0
    Height = 275
    Top = 25
    Width = 700
    Align = alBottom
    Anchors = [akTop, akLeft, akRight, akBottom]
    TabOrder = 3
  end
end