Python3.6 tkinter使用place方法失效

import tkinter as tk
import tkinter.messagebox
import pickle
class Desk():
    def __init__(self,master):
        self.window = master
        self.window.config()
        self.window.title("线路规划系统")
        self.window.geometry("500x300")
        self.window.resizable(width=False,height=False)
        main_menu(self.window)

class main_menu():
    def __init__(self,window):
        self.window = window
        self.window.config()
        self.main_menu = tk.Frame(self.window, )
        self.main_menu.pack()
        b = tk.Label(self.main_menu, text="主菜单", font=('heiti', 25), width=20, height=1)
        b.pack()
        v = tk.Button(self.main_menu, text=" 用户模式 ", width=20, height=1, command=self.change)
        v.pack()
        s = tk.Button(self.main_menu, text="管理员模式", width=20, height=1 )
        s.pack()

        v.place(x=10, y=30)
        s.place(x=10, y=40)
        b.place(x=10, y=20)


    def change(self, ):
        self.main_menu.destroy()
        user_face(self.window)

class user_face():
    def __init__(self,window):
        self.window = window
        self.window.config()
        self.user_face = tk.Frame(self.window, )
        self.user_face.pack()
        a = 0.1
        with open("zhenjiang_jiaotong.txt", 'r') as jt:
            for line in jt:
                lines = line.rstrip()
                s = tk.Button(window, text=lines, width=50, height=1)
                s.place(relx=0.1, rely=a, anchor="center")
                a += 0.1
                s.pack()


if __name__ == '__main__':
    root = tk.Tk()
    Desk(root)
    root.mainloop()

使用place()后不显示按钮, 单独使用pack 无法更改按钮的位置,这个要怎么更改

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 5
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 5
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

ITApe_DeHao

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值