3

我正在构建一个小型教育应用程序。

我已经完成了所有代码,我所缺少的只是让一个窗口打开,TK 显示一个文本框、一个图像和一个按钮。

它应该做的就是在单击按钮并关闭窗口后返回插入到文本框中的文本。

那么,我该怎么做呢?

我一直在看代码,但我没有做任何工作,我几乎为这么简单而感到羞耻。

谢谢

4

2 回答 2

2

编写 GUI 的一种简单方法是使用 Tkinter。有一个显示带有文本和按钮的窗口的示例:

from Tkinter import*

class GUI:

    def __init__(self,v): 

        self.entry = Entry(v)
        self.entry.pack()

        self.button=Button(v, text="Press the button",command=self.pressButton)
        self.button.pack()

        self.t = StringVar()
        self.t.set("You wrote: ")
        self.label=Label(v, textvariable=self.t)
        self.label.pack()

        self.n = 0

    def pressButton(self):

        text = self.entry.get()
        self.t.set("You wrote: "+text)

w=Tk()
gui=GUI(w)
w.mainloop()

您可以查看 Tkinter 文档,标签小部件还支持包含图片。

问候

于 2012-05-20T18:11:06.333 回答
2

在此处输入图像描述

这是一个从inputBoxto获取输入的简单代码myText。它应该让您朝着正确的方向开始。根据您需要检查或执行的其他操作,您可以为其添加更多功能。请注意,您可能必须使用 line 的顺序image = tk.PhotoImage(data=b64_data)。因为如果你把它放在后面b64_data = ...。它会给你错误。(我正在使用 Python 3.2 运行 MAC 10.6)。并且该图片目前仅适用于 GIF。如果您想了解更多信息,请参阅底部的参考资料。

import tkinter as tk
import urllib.request
import base64

# Download the image using urllib
URL = "http://www.contentmanagement365.com/Content/Exhibition6/Files/369a0147-0853-4bb0-85ff-c1beda37c3db/apple_logo_50x50.gif"

u = urllib.request.urlopen(URL)
raw_data = u.read()
u.close()

b64_data = base64.encodestring(raw_data)

# The string you want to returned is somewhere outside
myText = 'empty'

def getText():
    global myText
    # You can perform check on some condition if you want to
    # If it is okay, then store the value, and exist
    myText = inputBox.get()
    print('User Entered:', myText)
    root.destroy()

root = tk.Tk()

# Just a simple title
simpleTitle = tk.Label(root)
simpleTitle['text'] = 'Please enter your input here'
simpleTitle.pack()

# The image (but in the label widget)
image = tk.PhotoImage(data=b64_data)
imageLabel = tk.Label(image=image)
imageLabel.pack()

# The entry box widget
inputBox = tk.Entry(root)
inputBox.pack()

# The button widget
button = tk.Button(root, text='Submit', command=getText)
button.pack()

tk.mainloop()

如果您想了解更多关于 Tkinter 条目小部件的信息,请参考以下参考:http: //effbot.org/tkinterbook/entry.htm

关于如何获取图像的参考:Stackoverflow Question

于 2012-05-20T18:11:08.137 回答