Welcome to mirror list, hosted at ThFree Co, Russian Federation.

UnitGraph.dfm - github.com/sanekgusev/LinX-old.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3983a45546c200b3271438400034ea09c80deed3 (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
70
object FormGraph: TFormGraph
  Left = 0
  Top = 0
  AlphaBlend = True
  BorderStyle = bsSizeToolWin
  Caption = 'Graph'
  ClientHeight = 200
  ClientWidth = 400
  Color = clWindow
  TransparentColorValue = clWindowText
  Constraints.MinHeight = 100
  Constraints.MinWidth = 200
  DoubleBuffered = True
  ParentFont = True
  GlassFrame.SheetOfGlass = True
  KeyPreview = True
  OldCreateOrder = False
  Scaled = False
  OnClose = FormClose
  OnCreate = FormCreate
  OnDblClick = FormDblClick
  OnKeyPress = FormKeyPress
  OnMouseDown = FormMouseDown
  OnMouseWheelDown = FormMouseWheelDown
  OnMouseWheelUp = FormMouseWheelUp
  OnPaint = FormPaint
  OnResize = FormResize
  DesignSize = (
    400
    200)
  PixelsPerInch = 96
  TextHeight = 13
  object EditMax: TEdit
    Left = 5
    Top = 11
    Width = 30
    Height = 21
    Font.Charset = DEFAULT_CHARSET
    Font.Color = clBlue
    Font.Height = -11
    Font.Name = 'Tahoma'
    Font.Style = []
    MaxLength = 5
    ParentFont = False
    TabOrder = 0
    Visible = False
    OnChange = EditMaxChange
    OnExit = EditMaxExit
    OnKeyPress = EditMaxKeyPress
  end
  object EditMin: TEdit
    Left = 5
    Top = 176
    Width = 30
    Height = 21
    Anchors = [akLeft, akBottom]
    Font.Charset = DEFAULT_CHARSET
    Font.Color = clBlue
    Font.Height = -11
    Font.Name = 'Tahoma'
    Font.Style = []
    MaxLength = 5
    ParentFont = False
    TabOrder = 1
    Visible = False
    OnChange = EditMinChange
    OnExit = EditMaxExit
    OnKeyPress = EditMaxKeyPress
  end
end