鱼C论坛

 找回密码
 立即注册
查看: 2074|回复: 1

[已解决]文本编辑器:NameError: name 'Tk' is not defined

[复制链接]
发表于 2023-3-10 07:07:50 | 显示全部楼层 |阅读模式
10鱼币
import tkinter
#from Tkinter import *

def popup(event):
    m2.post(event.x_rott,event.y_root)
def hello3():
    print('我是剪切命令')
def hello4():
    print('我是复制命令')
def hello5():
    print('我是粘贴命令')

root=Tk()
root.geometry('400x400+280+280')

v=StringVar(root)
m1=Menu(root)
filemenu=Menu(m1)
editmenu=Menu(m1)
viewmenu=Menu(m1)
for item in ['打开','关闭','退出']:
    filemenu.add_command(label=item,command=hello1)
for item in ['复制','剪切','粘贴']:
    editmenu.add_command(label=item,command=hello1)
for item in ['代码','拆分','设计']:
    viewmenu.add_command(label=item,command=hello1)
m1.add_cascade(label='文件',menu=filemenu)
m1.add_cascade(label='编辑',menu=editmenu)
m1.add_cascade(label='视图',menu=viewmenu)

filemenu.add_separator()

filemenu.add_checkbutton(label='自动保存',command=hello2,variable=v)

m2=Menu(root)
m2.add_command(label='剪切',command=hello3)
m2.add_command(label='复制',command=hello4)
m2.add_command(label='粘贴',command=hello5)
root.bind('<Button-3>',popup)

root['menu']=m1
root.mainloop()
最佳答案
2023-3-10 07:07:51
# import tkinter                                  这行注释掉
from tkinter import *                                       # 这行取消注释,且把 Tkinter 改成 tkinter

def popup(event):
    m2.post(event.x_rott,event.y_root)

##################                你没有写 hello1 和 hello2
def hello1():
    pass
def hello2():
    pass
##################
def hello3():
    print('我是剪切命令')
def hello4():
    print('我是复制命令')
def hello5():
    print('我是粘贴命令')

root=Tk()
root.geometry('400x400+280+280')

v=StringVar(root)
m1=Menu(root)
filemenu=Menu(m1)
editmenu=Menu(m1)
viewmenu=Menu(m1)
for item in ['打开','关闭','退出']:
    filemenu.add_command(label=item,command=hello1)
for item in ['复制','剪切','粘贴']:
    editmenu.add_command(label=item,command=hello1)
for item in ['代码','拆分','设计']:
    viewmenu.add_command(label=item,command=hello1)
m1.add_cascade(label='文件',menu=filemenu)
m1.add_cascade(label='编辑',menu=editmenu)
m1.add_cascade(label='视图',menu=viewmenu)

filemenu.add_separator()

filemenu.add_checkbutton(label='自动保存',command=hello2,variable=v)

m2=Menu(root)
m2.add_command(label='剪切',command=hello3)
m2.add_command(label='复制',command=hello4)
m2.add_command(label='粘贴',command=hello5)
root.bind('<Button-3>',popup)

root['menu']=m1
root.mainloop()

最佳答案

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2023-3-10 07:07:51 | 显示全部楼层    本楼为最佳答案   
# import tkinter                                  这行注释掉
from tkinter import *                                       # 这行取消注释,且把 Tkinter 改成 tkinter

def popup(event):
    m2.post(event.x_rott,event.y_root)

##################                你没有写 hello1 和 hello2
def hello1():
    pass
def hello2():
    pass
##################
def hello3():
    print('我是剪切命令')
def hello4():
    print('我是复制命令')
def hello5():
    print('我是粘贴命令')

root=Tk()
root.geometry('400x400+280+280')

v=StringVar(root)
m1=Menu(root)
filemenu=Menu(m1)
editmenu=Menu(m1)
viewmenu=Menu(m1)
for item in ['打开','关闭','退出']:
    filemenu.add_command(label=item,command=hello1)
for item in ['复制','剪切','粘贴']:
    editmenu.add_command(label=item,command=hello1)
for item in ['代码','拆分','设计']:
    viewmenu.add_command(label=item,command=hello1)
m1.add_cascade(label='文件',menu=filemenu)
m1.add_cascade(label='编辑',menu=editmenu)
m1.add_cascade(label='视图',menu=viewmenu)

filemenu.add_separator()

filemenu.add_checkbutton(label='自动保存',command=hello2,variable=v)

m2=Menu(root)
m2.add_command(label='剪切',command=hello3)
m2.add_command(label='复制',command=hello4)
m2.add_command(label='粘贴',command=hello5)
root.bind('<Button-3>',popup)

root['menu']=m1
root.mainloop()
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-4 15:49

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表