日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程语言 > python >内容正文

python

python运行空白_执行时空白tkinter窗口

發(fā)布時(shí)間:2024/9/27 python 36 豆豆
生活随笔 收集整理的這篇文章主要介紹了 python运行空白_执行时空白tkinter窗口 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

我修改了你的代碼讓它正常工作。在

更改了:您有2個(gè)變量^ {< CD1>}和^ {CD2>},其中一個(gè)是創(chuàng)建空白窗口。我將其更改為只使用一個(gè)變量root,它在開始時(shí)初始化為myproject。在

我沒有在函數(shù)中使用root,而是將它們改為self,因?yàn)閟elf也繼承了Tkinter.Tk。在

在__init__函數(shù)中,我刪除了未使用的變量parent。在

更新:也在filemenu.add_命令,更改為傳入root.file_保存而不是myproject.file_保存. 謝謝PM 2Ring。在from Tkinter import *

import Tkinter

from tkFileDialog import askopenfile, asksaveasfile

import tkFileDialog

class myproject(Tkinter.Tk):

def __init__(self):

Tkinter.Tk.__init__(self)

self.textbox()

self.checkbox2()

def textbox(self):

self.txt1 = Tkinter.Text(self, borderwidth=3, relief="sunken", height=4,width=55)

self.txt1.config(font=("consolas", 12), undo=True, wrap='word')

self.txt1.grid(row=0, column=1, sticky="nsew", padx=2, pady=2)

def checkbox2(self): #self.checkbox

checkbox = Tkinter.Checkbutton(self, text = " ")

checkbox.grid(column=1,row=2)

def file_save(self):

f = asksaveasfile(mode='w', defaultextension=".txt")

root = myproject()

menubar = Menu(root)

root.configure(menu=menubar)

filemenu = Menu(menubar,tearoff=0)

menubar.add_cascade(label="File", menu=filemenu)

filemenu.add_command(label="Save", command=root.file_save)

root.mainloop()

總結(jié)

以上是生活随笔為你收集整理的python运行空白_执行时空白tkinter窗口的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。