Python Forum
PyGTK3, I can't Change Button and Table Backgorund Color using modify_bg method.
Thread Rating:
  • 2 Vote(s) - 4 Average
  • 1
  • 2
  • 3
  • 4
  • 5
PyGTK3, I can't Change Button and Table Backgorund Color using modify_bg method.
#4
#!/usr/bin/python3
import os
import time
import gi
from gi.repository import Gtk, Gdk

class GridWindow(Gtk.Window):
    def __init__(self):
        Gtk.Window.__init__(self, title="NEOTECH")
        self.grid = Gtk.Grid()
        self.add(self.grid)
        self.btnStartTest=Gtk.Button("Iniciar Prueba")
        self.btnStartTest.connect("clicked",self.StartTest)
        self.label1 = Gtk.Label("NUMERO DE SERIE")
        self.grid.add(self.btnStartTest)
        self.grid.attach(self.label1,0,1,1,1)


    def StartTest(self,widget):
        color = Gdk.color_parse('green')
        rgba = Gdk.RGBA.from_color(color)
        self.label1.override_background_color(0,rgba)
   

win = GridWindow()
win.set_position(Gtk.WindowPosition.CENTER)
win.set_default_size(150,60)
win.set_type_hint(Gdk.WindowTypeHint.MENU)
win.connect("delete-event", Gtk.main_quit)
win.show_all()
Gtk.main()
Reply


Messages In This Thread
RE: PyGTK3, I can't Change Button and Table Backgorund Color using modify_bg method. - by changos - Apr-24-2017, 04:05 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  [Tkinter] how to make label or button not visible with the place method? nowayj63 2 2,783 Jan-03-2023, 06:29 PM
Last Post: Yoriz
  Can't change the colour of Tk button text Pilover 6 14,714 Nov-15-2022, 10:11 PM
Last Post: woooee
  [PyQt] [Solved]Change text color of one line in TextBrowser Extra 2 4,882 Aug-23-2022, 09:11 PM
Last Post: Extra
  [WxPython] [SOLVED] How to change button label? Winfried 3 2,082 May-31-2022, 06:37 PM
Last Post: Winfried
  Tkinter - How can I change the default Notebook border color? TurboC 5 14,741 May-23-2022, 03:44 PM
Last Post: bigmac
Question [Tkinter] Change Treeview column color? water 3 9,587 Mar-04-2022, 11:20 AM
Last Post: Larz60+
  Can't get tkinter button to change color based on changes in data dford 4 3,412 Feb-13-2022, 01:57 PM
Last Post: dford
  Tkinter menu font size -method to change tonycat 2 7,822 Oct-11-2020, 02:43 AM
Last Post: tonycat
  tkinter | Button color text on Click Maryan 2 3,358 Oct-09-2020, 08:56 PM
Last Post: Maryan
  [Tkinter] Trying to change font size w/o changing button size python63 3 9,826 Aug-05-2020, 01:04 AM
Last Post: Larz60+

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020