-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinterfaz.py
More file actions
13 lines (11 loc) · 797 Bytes
/
interfaz.py
File metadata and controls
13 lines (11 loc) · 797 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
from tkinter import *
ventana=Tk()
ventana.title('Cambio de Tasa')
ventana.configure(bg='light blue')
Label(ventana,text='Tasa',bg='light blue',fg='black',font=('Arial Bold',50)).grid(row=0,column=0)
Entry(ventana,bg='light blue',fg='black',font=('Arial Bold',50)).grid(row=0,column=1)
Label(ventana,text='%',bg='light blue',fg='black',font=('Arial Bold',50)).grid(row=0,column=2)
Label(ventana,text='Inicial',bg='light blue',fg='black',font=('Arial Bold',50)).grid(row=1,column=0)
Label(ventana,text='Final',bg='light blue',fg='black',font=('Arial Bold',50)).grid(row=2,column=0)
Combobox(ventana,state='readonly',values=('Anual','Semestral','Trimestral','Bimestral','Mensual','Quincenal','Diario',' '),bg='light blue',fg='black',font=('Arial Bold',50)).grid(row=1,column=1)
ventana.mainloop()