تکینتر

تی‌کی‌اینتر (Tkinter) کتابخانهٔ واسط کاربر گرافیکی برای زبان برنامه‌نویسی پایتون است. این کتابخانه همراه با پکیج نصب پایتون موجود است. در زیر مثال «Hello World!» را با استفاده از این کتابخانه مشاهده می‌کنید:

from tkinter import *

root = Tk()

label = Label(root, text="Hello, world!")
label.pack()

root.mainloop()

یک مثال دیگر که یک پنجره را با دکمه خروج نشان می‌دهد:

#!/usr/bin/env python3
import tkinter as tk

class Application(tk.Frame):
    def __init__(self, master=None):
        super(Application, self).__init__(master)
        self.grid()  
        self.createWidgets()

    def createWidgets(self):
        self.quitButton = tk.Button(self, text='Quit', command=self.quit)
        self.quitButton.grid()

app = Application()
app.master.title('Sample application')
app.mainloop()

پیوند به بیرون

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.