python编程,使用Tkinter中的文本框显示系统时间

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python编程,使用Tkinter中的文本框显示系统时间相关的知识,希望对你有一定的参考价值。

Tkinter是事件驱动的,但如果不需要事件驱动该怎么办呢?比如,设置一个Text,自动显示当前系统时间。这个过程中,是不需要用户进行操作的,程序运行时,Text就可以自动显示当前系统时间。
我只简单看了下Tkinter,没有想明白这个问题,请尽量讲详细些,并附一段显示当前系统时间的程序。(也可以是类似的,比如Text显示的文本来自于一个函数的返回结果,这个函数能自动不间断地输出结果)
谢谢!

Python编程中,用Tkinter中的文本框获取系统当前的时间并且显示,代码如下:

import sys    
from tkinter import *
import time
def tick():
    global time1
    # 从运行程序的计算机上面获取当前的系统时间
    time2 = time.strftime(\'%H:%M:%S\')
    # 如果时间发生变化,代码自动更新显示的系统时间
    if time2 != time1:
        time1 = time2
        clock.config(text=time2)
        # calls itself every 200 milliseconds
        # to update the time display as needed
        # could use >200 ms, but display gets jerky
    clock.after(200, tick)
root = Tk()
time1 = \'\'
status = Label(root, text="v1.0", bd=1, relief=SUNKEN, anchor=W)
status.grid(row=0, column=0)
clock = Label(root, font=(\'times\', 20, \'bold\'), bg=\'green\')
clock.grid(row=0, column=1) 
tick()
root.mainloop()
参考技术A import sys
from tkinter import *
import time

def tick():
global time1
# get the current local time from the PC
time2 = time.strftime('%H:%M:%S')
# if time string has changed, update it
if time2 != time1:
time1 = time2
clock.config(text=time2)
# calls itself every 200 milliseconds
# to update the time display as needed
# could use >200 ms, but display gets jerky
clock.after(200, tick)

root = Tk()
time1 = ''

status = Label(root, text="v1.0", bd=1, relief=SUNKEN, anchor=W)
status.grid(row=0, column=0)

clock = Label(root, font=('times', 20, 'bold'), bg='green')
clock.grid(row=0, column=1)

tick()
root.mainloop()

代码是我网上抄来的,具体实现一种方法可以用并行运行方法实现,可以参照fork本回答被提问者采纳

Python GUI编程(Tkinter)Label控件

import tkinter

win = tkinter.Tk()
win.title("sunck")
win.geometry("400x400+200+20")

‘‘‘
Label:标签控件可以显示文本
‘‘‘
#win 父窗体
#text 显示的文本内容
#bg 背景色
#fg 字体颜色
#wraplength 指定text文本中多宽进行换行
#justify 设置换行后的对齐方法
#anchor 位置 n北 e东 s南 w西 center居中 ne se sw nw
label = tkinter.Label(win,
text="sunck",
bg="blue",
fg="red",
font=("黑体", 20),
width=10,
height=4,
wraplength=100,
justify="left",
anchor="center")

#显示出来
label.pack()
win.mainloop()

以上是关于python编程,使用Tkinter中的文本框显示系统时间的主要内容,如果未能解决你的问题,请参考以下文章

如何更改文本框的大小,以便它可以使用tkinter和python在UI上水平扩展

Python Tkinter 文本框(Entry)

python GUI编程tkinter示例之目录树遍历工具

Python日记——利用Tkinter学习GUI设计

python tkinter Text

Python中tkinter控件中的Listbox控件详解