c6a9cd69c2
* NEW: Add examples again. I hope correctly this time. git-svn-id: svn://localhost/gambas/trunk@6726 867c0c6c-44f3-4631-809d-bfa615b0a4ec
38 lines
719 B
Text
38 lines
719 B
Text
# Gambas Form File 3.0
|
|
|
|
{ Form Form
|
|
MoveScaled(0,0,64,64)
|
|
Background = &H000000&
|
|
Mouse = Mouse.SizeAll
|
|
Border = False
|
|
Utility = True
|
|
Stacking = Window.Above
|
|
SkipTaskbar = True
|
|
Opacity = 50
|
|
{ Label1 Label
|
|
MoveScaled(3,3,52,6)
|
|
Font = Font["Bold,+5"]
|
|
Foreground = Color.TextBackground
|
|
Text = ("Cut")
|
|
}
|
|
{ dwgNW DrawingArea dwgCorner
|
|
Name = "dwgNW"
|
|
MoveScaled(7,31,4,4)
|
|
Tag = "NW"
|
|
}
|
|
{ dwgNE DrawingArea dwgCorner
|
|
Name = "dwgNE"
|
|
MoveScaled(14,31,4,4)
|
|
Tag = "NE"
|
|
}
|
|
{ dwgSW DrawingArea dwgCorner
|
|
Name = "dwgSW"
|
|
MoveScaled(7,38,4,4)
|
|
Tag = "SW"
|
|
}
|
|
{ dwgSE DrawingArea dwgCorner
|
|
Name = "dwgSE"
|
|
MoveScaled(14,38,4,4)
|
|
Tag = "SE"
|
|
}
|
|
}
|