Python GUI编程 文本弹窗的实例

时间:2022-11-19 10:17:40

如下所示:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
out = subprocess.getstatusoutput('adb shell pm list packages')
 
top = tk.toplevel()
top.title('包名列表')
 
top.geometry('%dx%d' % (400, 1200)) # 设置窗口大小
 
t = text(top, width=400, height=900)
t.insert('1.0', "{}".format(out[1]))
# 插入文本,用引号引起来“1.0” 这个是插入文本的坐标,且1与0之间为点,而不是逗号,切记
 
 
# wraplength: 指定多少单位后开始换行
# justify: 指定多行的对齐方式
# 例子: label(top, text='查看当前手机上所有包名: ',wraplength = 80,justify = 'left').grid(row=1,stick=w, pady=10)
t.pack()
top.mainloop()

以上这篇python gui编程 文本弹窗的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/qq_39208536/article/details/83795562