1. 程式人生 > 程式設計 >關於Python Tkinter Button控制元件command傳參問題的解決方式

關於Python Tkinter Button控制元件command傳參問題的解決方式

環境:Ubuntu14、Python3.4、Pycharm2018

一、使用command=lambda: 的形式傳參

程式碼如下

from tkinter import *
import tkinter.messagebox as messagebox


def createpage(master):
  master = Frame(root)
  master.pack()
  Label(master,text='num1').grid(row=0,column=0,stick=W,pady=10)
  e1 = Entry(master)
  e1.grid(row=0,column=1,stick=E)
  Label(master,text='num2').grid(row=1,pady=10)
  e2 = Entry(master)
  e2.grid(row=1,stick=E)
  # Button傳遞引數
  Button(
    master,text='加',command=lambda: btn_def(e1.get(),e2.get())
  ).grid(row=2,stick=W)
  Button(master,text='減').grid(row=2,text='說明').grid(row=3,pady=10)
  Label(master,text='只寫了加法(請輸入簡單數字測試button傳參)').grid(
    row=3,stick=E
  )

def btn_def(num1,num2):
  num = int(num1) + int(num2)
  messagebox.showinfo('結果','%d' % num)

if __name__ == '__main__':
  root = Tk()
  root.title('Demo')
  root.geometry('400x150')
  createpage(root)
  root.mainloop()

二、使用StringVar()和Entry textvariable對引數進行繫結

程式碼如下

from tkinter import *
import tkinter.messagebox as messagebox

class A:
  """
  使用StringVar() 和 textvariable
  對Button進行繫結
  實現Button對資料進行操作
  解決Button傳參問題
  StringVar()的數需要使用.get()獲取值
  """
  def __init__(self,master):
    self.root = Frame(master)
    self.num1 = StringVar() # 第一個數字
    self.num2 = StringVar() # 第一個數字
    self.createpage()

  def createpage(self):
    self.root.pack()
    Label(self.root,pady=10)
    # textvariable和StringVar的num1繫結
    Entry(self.root,textvariable=self.num1).grid(row=0,stick=E)
    Label(self.root,pady=10)
    # textvariable和StringVar的num2繫結
    Entry(self.root,textvariable=self.num2).grid(row=1,stick=E)
    # Button傳遞引數
    Button(
      self.root,command=self.btn_def
    ).grid(row=2,stick=W)
    Button(self.root,pady=10)
    Label(self.root,text='只寫了加法(請輸入簡單數字測試button傳參)').grid(
      row=3,stick=E
    )

  def btn_def(self):
    # 使用.get()獲取值
    num = int(self.num1.get()) + int(self.num2.get())
    messagebox.showinfo('結果','%d' % num)

if __name__ == '__main__':
  root = Tk()
  root.title('Demo2')
  root.geometry('400x150')
  A(root)
  root.mainloop()

三、總結

以上兩種方式都是使用了Button進行資料事件處理,方法一為Button command下傳遞引數,方法二為控制元件下使用textvariable對StringVar的引數進行繫結。(我比較推薦使用方法二)。好了,今天就說到這吧,希望大家多多支援我們!