-
Notifications
You must be signed in to change notification settings - Fork 0
/
ventanas.py
39 lines (26 loc) · 1.1 KB
/
ventanas.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import tkinter as tk
from os import system
import time
ventana = tk.Tk()
ventana.title(" Movie Market.. Sistema de Registros y Adminstracion") # titulo del programa
ventana.geometry('500x400') # dimencion de la ventana
# estas son las etiquetas
etiqueta_nombre = tk.Label(ventana, text="Nombre").grid(row=0)
etiqueta_nombre2 = tk.Label(ventana, text ="Nombre2").grid(row=2)
etiqueta_Ubicacion = tk.Label(ventana, text = "Ubicacion").grid(row=3)
entrada_nombre = tk.Entry(ventana).grid(row=0, column=1)
entrada_nombre2 = tk.Entry(ventana).grid(row=2, column=1)
entrada_Ubicacion = tk.Entry(ventana).grid(row=3, column=1)
ventana.mainloop()
class PeliculaNueva():
"""clase se tienes los atributos para crear un objeto pelicula"""
def __init__(self):
self.nombreMovie = input('Nombre de la Pelicula: ')
self.tipoformato = input("Ingrese el tipo de formato del disco, 1.DVD 2.BlueRay: ")
self.ubicacion_disco = input("Ubicacino del disco o Pelicula: ")
def buscarBd(self):
pass
def tipoFormato(self):
return b
def ubicacionBd(self):
return a