Answers for "button attribute disabled"

CSS
9

html button disabled

<button type="button" disabled>This button is disabled</button>
Posted by: Guest on February-21-2020
0

button disabled

.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
Posted by: Guest on May-26-2021
0

disable button

from tkinter import *

ws = Tk()
ws.title('PythonGuides')
ws.geometry('200x80')

def isChecked():
    if cb.get() == 1:
        btn['state'] = NORMAL
        btn.configure(text='Awake!')
    elif cb.get() == 0:
        btn['state'] = DISABLED
        btn.configure(text='Sleeping!')
    else:
        messagebox.showerror('PythonGuides', 'Something went wrong!')

cb = IntVar()

Checkbutton(ws, text="accept T&C", variable=cb, onvalue=1, offvalue=0, command=isChecked).pack()
btn = Button(ws, text='Sleeping!', state=DISABLED, padx=20, pady=5)
btn.pack()

ws.mainloop()
Posted by: Guest on September-06-2021

Code answers related to "button attribute disabled"

Browse Popular Code Answers by Language