Vous n’êtes pas connecté.
Ce message a été modifié 1 fois. Dernière modification effectuée par "Y0Gi" (22 janvier 2013, 04:30)
![]() |
Code source |
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() |
Citation de "Manwe"
hm.. wie wäre denn delphi? oder entspricht das nicht den anforderungen?
Citation de "Karlsson"
Du kannst du mal Lua ansehen, das lässt sich in Programme (C/C++ AFAIK) einbetten und dürfte daher recht klein werden.
-