Remove test forms that do not compile.

[GB.GUI.BASE]
* BUG: Remove test forms that do not compile.
This commit is contained in:
Benoît Minisini 2023-08-11 13:42:56 +02:00
parent 550fa94f6e
commit 8e50479a29
2 changed files with 0 additions and 52 deletions

View File

@ -1,23 +0,0 @@
' Gambas class file
' Private btnTest As MyButton
'
' Public Sub _new()
'
' btnTest = New MyButton(Me)
' btnTest.MoveScaled(4, 4, 16, 2)
' btnTest.Text = "MyButton"
'
' End
Public Sub Button1_Click()
Debug
End
Public Sub MyButton1_Click()
Debug
End

View File

@ -1,29 +0,0 @@
# Gambas Form File 3.0
{ Form Form
MoveScaled(0,0,40,31)
Arrangement = Arrange.Fill
Margin = True
{ TabStrip1 TabStrip
MoveScaled(6,2,24,24)
Arrangement = Arrange.Fill
Count = 2
Index = 0
Text = ("MyButton")
{ MyButton1 MyButton
MoveScaled(0,0,16,5)
Background = Color.SoftYellow
Text = ("&MyButton")
Picture = Picture["spinbox/plus.png"]
}
Index = 1
Text = ("Button")
{ Button1 Button
MoveScaled(3,8,16,4)
Background = Color.SoftOrange
Text = Shortcut(("Button"), "B")
Picture = Picture["spinbox/plus.png"]
}
Index = 0
}
}