Author: ccciccciocccicccio
Date: May 3, 2008 00:50
Vi posto un esempio:
import Tkinter
from Tkinter import *
class MiaApp:
def __init__(self, parent):
self.root = parent
self.quadro = Frame(parent,
borderwidth = 2,
relief = RIDGE)
self.quadro.pack(expand = YES,
fill = BOTH)
self.Quadro_pulsanti= LabelFrame(self.quadro,
bd = 2,
text = "RISOLUZIONE SCHERMO:",
relief = RIDGE)
self.Quadro_pulsanti.pack(expand = YES,
fill = BOTH,
padx = 10,
pady = 10)
|