Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

จะเลือก Radiobutton เพียงปุ่มเดียวใน Tkinter ได้อย่างไร?


เพื่อใช้การเลือกสำหรับหนึ่งตัวเลือกขึ้นไป เราสามารถใช้วิดเจ็ต Radiobutton วิดเจ็ต Radiobutton ใน Tkinter ให้ผู้ใช้เลือกได้เพียงตัวเลือกเดียวจากชุดตัวเลือกที่กำหนด Radiobutton มีค่าบูลีนเพียงสองค่า:จริงหรือเท็จ

หากเราต้องการผลลัพธ์เพื่อตรวจสอบว่าผู้ใช้เลือกตัวเลือกใด เราก็สามารถใช้ get() กระบวนการ. ส่งคืนวัตถุที่กำหนดเป็นตัวแปร เราสามารถแสดงการเลือกในวิดเจ็ตป้ายกำกับโดยแคสต์ค่าจำนวนเต็มในออบเจกต์สตริงและส่งผ่านไปยังแอตทริบิวต์ข้อความ

ตัวอย่าง

# Import the required libraries
from tkinter import *
from tkinter import ttk

# Create an instance of tkinter frame or window
win = Tk()

# Set the size of the window
win.geometry("700x350")


# Define a function to get the output for selected option
def selection():
   selected = "You have selected " + str(radio.get())
   label.config(text=selected)


radio = IntVar()
Label(text="Your Favourite programming language:", font=('Aerial 11')).pack()

# Define radiobutton for each options
r1 = Radiobutton(win, text="C++", variable=radio, value=1, command=selection)
r1.pack(anchor=N)

r2 = Radiobutton(win, text="Python", variable=radio, value=2, command=selection)
r2.pack(anchor=N)

r3 = Radiobutton(win, text="Java", variable=radio, value=3, command=selection)
r3.pack(anchor=N)

# Define a label widget
label = Label(win)
label.pack()

win.mainloop()

ผลลัพธ์

การเรียกใช้โค้ดด้านบนจะแสดงหน้าต่างพร้อมวิดเจ็ตป้ายกำกับและชุดปุ่มตัวเลือกที่สอดคล้องกับตัวเลือก เลือกตัวเลือกใดก็ได้จากรายการเพื่อดูผลลัพธ์

จะเลือก Radiobutton เพียงปุ่มเดียวใน Tkinter ได้อย่างไร?