You are not logged in.

This post has been edited 1 times, last edit by "Y0Gi" (Jan 22nd 2013, 4:30am)
|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
from Tkinter import *
IMG_FN = 'irgendein.gif'
class GUI(Frame):
def __init__(self, master=None):
Frame.__init__(self, master)
img = PhotoImage(file=IMG_FN)
lbl = Label(self, image=img)
lbl.image = img # Keep reference or image will get lost.
lbl.grid(sticky=N+S+W+E)
if __name__ == '__main__':
app = GUI()
app.grid(sticky=N+S+W+E)
app.mainloop()
|
da ich eigentlich ausschließlich Java programmiere, würde ich es damit in einer 1/2 Stunde fertig haben.
Quoted from "Manwe"
hm.. wie wäre denn delphi? oder entspricht das nicht den anforderungen?

Quoted from "Karlsson"
Du kannst du mal Lua ansehen, das lässt sich in Programme (C/C++ AFAIK) einbetten und dürfte daher recht klein werden.
-