aboutsummaryrefslogtreecommitdiff
path: root/Занимательное программирование/4/4_prim/unit1.lfm
blob: d7f553d3ae169fb11361092edc51f940c1d54b4c (plain)
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
object Form1: TForm1
  Left = 322
  Height = 620
  Top = 32
  Width = 856
  Caption = 'Form1'
  ClientHeight = 620
  ClientWidth = 856
  DesignTimePPI = 120
  LCLVersion = '4.2.0.0'
  object BackBuffer: TImage
    Left = 16
    Height = 400
    Top = 8
    Width = 824
    Visible = False
  end
  object Screen: TImage
    Left = 16
    Height = 400
    Top = 8
    Width = 824
  end
  object Button1: TButton
    Left = 16
    Height = 56
    Top = 440
    Width = 176
    Caption = 'Загрузка/сохранение'
    TabOrder = 0
    OnClick = Button1Click
  end
  object Button2: TButton
    Left = 192
    Height = 56
    Top = 440
    Width = 166
    Caption = 'Рекурсивный обход'
    TabOrder = 1
    OnClick = Button2Click
  end
  object Button3: TButton
    Left = 360
    Height = 56
    Top = 440
    Width = 176
    Caption = 'Волновая трассировка'
    TabOrder = 2
    OnClick = Button3Click
  end
  object Button4: TButton
    Left = 536
    Height = 56
    Top = 440
    Width = 144
    Caption = 'Алгоритм Прима'
    TabOrder = 3
    OnClick = Button4Click
  end
  object Button5: TButton
    Left = 680
    Height = 56
    Top = 440
    Width = 160
    Caption = 'Алгоритм Краскала'
    TabOrder = 4
    OnClick = Button5Click
  end
end