G


Entry.get

class Entry(Widget):         # /Python-3.0/Lib/tkinter/__init__.py
    def get(self):


Wm.geometry

    def wm_geometry(self, newGeometry=None):
    geometry = wm_geometry

IntVar.get


Grid

# lib/python3.1/tkinter/__init__.py
class Grid:


Grid.grid

# lib/python3.1/tkinter/__init__.py
class Grid:
    def grid_configure(self, cnf={}, **kw):
    grid = configure = config = grid_configure

TOP

W


widget

The generic term for any of the building blocks that make up an application in a graphical user interface. Examples of widgets: buttons, radiobuttons, text fields, frames, and text labels.


width=


window

This term has different meanings in different contexts, but in general it refers to a rectangular area somewhere on your display screen.


Misc.winfo_rgb

TOP



@weight=

@wrap=WORD


@wrap

D


Text.delete

class Text(Widget):     # lib/python3.1/tkinter/__init__.py
    def delete(self, index1, index2=None):


Canvas.delete


Misc.destroy

TOP

P


Pack

# lib/python3.1/tkinter/__init__.py
class Pack:
    """Geometry manager Pack.
    def pack_configure(self, cnf={}, **kw):
    pack = configure = config = pack_configure


PhotoImage

TOP

S


Scale

# lib/python3.1/tkinter/__init__.py
class Scale(Widget):
    """Scale widget which can display a numerical scale."""


Scrollbar

# lib/python3.1/tkinter/__init__.py
class Scrollbar(Widget):
    """Scrollbar widget which displays a slider at a certain position."""


Spinbox


Scrollbar.set

  • def set(self, *args):
  • 2002-10-05《余録》Listbox/Scrollbar
  • 2007-04-16《51》Text 部品と Scrollbar #1

TOP



@sticky

Y


yscrollcommand=

Listbox.yview

  • def yview(self, *what):


yview

TOP

F


TOPF


fg=


FileDialog


fill=


Canvas.find_withtag


font=


Frame

class Frame(Widget):    # lib/python3.1/tkinter/__init__.py

TOPF

E


Entry

class Entry(Widget):         # /Python-3.0/Lib/tkinter/__init__.py
    """Entry widget which allows to display simple text."""


Event

TOP

X


xscrollcommand=


xview

TOP

T


TOPT


Canvas.tag_bind

  • def tag_bind(self, tagOrId, sequence=None, func=None, add=None):
  • 2002-10-03《余録》Event: mouse events
  • 2007-01-29《余録》itemconfigure(anchor=)


Text

# lib/python3.1/tkinter/__init__.py
class Text(Widget):
    """Text widget which can display text in various forms."""


Wm.title

    def wm_title(self, string=None):
    title = wm_title


Tk

class Tk(Misc, Wm):    # lib/python3.1/tkinter/__init__.py

TOPT

B


bg=


Misc.bind

class Misc:    # lib/python3.1/tkinter/__init__.py
    def bind(self, sequence=None, func=None, add=None):


Button

TOP

M


Misc.mainloop

class Misc:    # lib/python3.1/tkinter/__init__.py
    def mainloop(self, n=0):


Menu


Menubutton


Misc


Canvas.move

TOP

I


Listbox.insert

class Listbox(Widget):    # lib/python3.1/tkinter/__init__.py
    def insert(self, index, *elements):


Text.insert

class Text(Widget):    # lib/python3.1/tkinter/__init__.py
    def insert(self, index, chars, *args):


IntVar

  • class IntVar(Variable):
  • 2002-10-10《余録》Scale


itemconfig = itemconfigure


Canvas.itemconfigure

class Canvas(Widget):         # /Python-3.0/Lib/tkinter/__init__.py
    def itemconfigure(self, tagOrId, cnf=None, **kw):
    itemconfig = itemconfigure

TOP

R


Radiobutton


row= Grid.grid


rowconfigure

class Misc:    # lib/python3.1/tkinter/__init__.py
    def grid_rowconfigure(self, index, cnf={}, **kw):
    rowconfigure = grid_rowconfigure


rowspan= Grid.grid

TOP

Python.use(better, Tkinter)《INDEX》

記事一覧 Python.use(better, Tkinter) 《Python3.1》

Tkinter への誘い(いざない)

《著》小粒ちゃん+∞《監修》小泉ひよ子とタマゴ倶楽部

Last updated♪2009/12/03

INDEX

@ABCDEFGHI J KLMNOPRSTUVWXYZ

L


TOPL


Label


Listbox

# lib/python3.1/tkinter/__init__.py
class Listbox(Widget):
    """Listbox widget which can display a list of strings."""

TOPL