tkinterでthread その2
概要
tkinterでthreadやってみた。
threadから、ライン引いてみた。
写真
サンプルコード
import Tkinter
import random
import threading
import time
a = 0
class Emu(threading.Thread):
def __init__(self):
threading.Thread.__init__(self)
def run(self):
a = 0
while a < 400:
a += 1
canvas.create_line(a % 400 + random.randrange(a),
a % 400 + random.randrange(a),
a % 400 + random.randrange(a),
a % 400 + random.randrange(a), fill = "red")
root = Tkinter.Tk();
root.minsize(420, 420)
canvas = Tkinter.Canvas(root, width = 400, height = 400)
canvas.place(x = 10, y = 10)
Emu().start()
root.mainloop()
import Tkinter
import random
import threading
import time
a = 0
class Emu(threading.Thread):
def __init__(self):
threading.Thread.__init__(self)
def run(self):
a = 0
while a < 400:
a += 1
canvas.create_line(a % 400 + random.randrange(a),
a % 400 + random.randrange(a),
a % 400 + random.randrange(a),
a % 400 + random.randrange(a), fill = "red")
root = Tkinter.Tk();
root.minsize(420, 420)
canvas = Tkinter.Canvas(root, width = 400, height = 400)
canvas.place(x = 10, y = 10)
Emu().start()
root.mainloop()
以上。
Author And Source
この問題について(tkinterでthread その2), 我々は、より多くの情報をここで見つけました https://qiita.com/ohisama@github/items/2647096ba549ff7dc637著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .