gambas-source-code/app/examples/Games/Puzzle1To8/.src/FMain.form
gambas 988546ad28 Update some translations.
[EXAMPLES]
* NEW: Update some translations.
2019-06-14 01:32:14 +02:00

95 lines
2.1 KiB
Text

# Gambas Form File 3.0
{ Form Form
MoveScaled(0,0,62,50)
Background = Color.LightForeground
Text = ("Puzzle 1 to 8 - Locate the numbers!")
Icon = Picture["logo.png"]
Resizable = False
{ MnuJuego Menu
Text = ("Game")
{ MnuReiniciar Menu
Text = ("Clear")
Picture = Picture["icon:/small/refresh"]
}
{ MnuSalir Menu
Text = ("Quit")
Picture = Picture["icon:/small/quit"]
}
}
{ Mnuayuda Menu
Text = ("Help")
{ MnuComoJugar Menu
Text = ("How to play?")
Picture = Picture["icon:/small/help"]
}
{ MnuAutor Menu
Text = ("About") & "..."
Picture = Picture["icon:/small/gambas"]
}
}
{ TextBox1 TextBox TXT
Name = "TextBox1"
MoveScaled(25,5,12,9)
Font = Font["Bitstream Charter,+8"]
Tag = "1"
Alignment = Align.Center
MaxLength = 1
}
{ TextBox2 TextBox TXT
Name = "TextBox2"
MoveScaled(13,14,12,9)
Font = Font["Bitstream Charter,+8"]
Tag = "2"
Alignment = Align.Center
MaxLength = 1
}
{ TextBox3 TextBox TXT
Name = "TextBox3"
MoveScaled(25,14,12,9)
Font = Font["Bitstream Charter,+8"]
Tag = "3"
Alignment = Align.Center
MaxLength = 1
}
{ TextBox4 TextBox TXT
Name = "TextBox4"
MoveScaled(37,14,12,9)
Font = Font["Bitstream Charter,+8"]
Tag = "4"
Alignment = Align.Center
MaxLength = 1
}
{ TextBox5 TextBox TXT
Name = "TextBox5"
MoveScaled(13,23,12,9)
Font = Font["Bitstream Charter,+8"]
Tag = "5"
Alignment = Align.Center
MaxLength = 1
}
{ TextBox6 TextBox TXT
Name = "TextBox6"
MoveScaled(25,23,12,9)
Font = Font["Bitstream Charter,+8"]
Tag = "6"
Alignment = Align.Center
MaxLength = 1
}
{ TextBox7 TextBox TXT
Name = "TextBox7"
MoveScaled(37,23,12,9)
Font = Font["Bitstream Charter,+8"]
Tag = "7"
Alignment = Align.Center
MaxLength = 1
}
{ TextBox8 TextBox TXT
Name = "TextBox8"
MoveScaled(25,32,12,9)
Font = Font["Bitstream Charter,+8"]
Tag = "8"
Alignment = Align.Center
MaxLength = 1
}
}