File: TreeViewExample.form

package info (click to toggle)
gambas3 3.20.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 77,208 kB
  • sloc: ansic: 197,232; cpp: 124,273; sh: 18,999; javascript: 7,761; sql: 5,399; makefile: 2,358; perl: 1,397; xml: 490; python: 335
file content (59 lines) | stat: -rw-r--r-- 1,101 bytes parent folder | download | duplicates (4)
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
# Gambas Form File 3.0

{ Form Form
  MoveScaled(25,11.1429,92,54)
  Text = ("TreeView Example")
  Icon = Picture["treeview.png"]
  Resizable = False
  { Help Menu
    Text = ("Help")
    { About Menu
      Text = ("About")
    }
  }
  { TreeView1 TreeView
    MoveScaled(1,1,24,48)
    Mode = Select.Multiple
    Editable = True
  }
  { Button1 Button
    MoveScaled(54,1,17,4)
    Text = ("Insert Name")
  }
  { Button2 Button
    MoveScaled(54,6,17,4)
    Text = ("Remove Name")
  }
  { TextBox1 TextBox
    MoveScaled(27,1,25,4)
  }
  { Frame1 Frame
    MoveScaled(27,11,64,13)
    Text = ("Current item")
    { TextLabel1 TextLabel
      MoveScaled(1,4,38,8)
    }
  }
  { Label2 Label
    MoveScaled(27,25,39,4)
    Font = Font["Bold"]
    Text = ("Events")
  }
  { TextArea1 TextArea
    MoveScaled(27,29,64,15)
    ReadOnly = True
  }
  { Button3 Button
    MoveScaled(71,45,20,4)
    Text = ("&Clear events")
  }
  { RadioButton1 RadioButton
    MoveScaled(27,6,12,4)
    Text = ("Male")
    Value = True
  }
  { RadioButton2 RadioButton
    MoveScaled(40,6,13,4)
    Text = ("Female")
  }
}