Beispiel #1
0
 def click_nuevo(self):
     screen = self.objetos.boton_nuevo.form.screen
     tamano = 320, 480
     posicion = 340, 80
     color = 5, 40, 20
     form_tree = Form(screen, "Seleccionar Folder", tamano, posicion, color)
     objetos = FormFile(form_tree)
     eventos = EventosTree(form_tree, objetos, self.log)
Beispiel #2
0
from winform.label import Label
from winform.imagen import Imagen

from conexion.cliente_tcp import Cliente_TCP

RESOLUCION = 900, 600
COLOR_FORM = 40, 0, 50
POS_VENTANA = 0, 0

tcp = Cliente_TCP()

# Crear pantalla, objeto unico y principal
SCREEN = Screen("Test recibir imagen 2", RESOLUCION, 1,
                1.0)  # enviamos el tamano al inicio
SCREEN.dibujar()
FORM1 = Form(SCREEN, "control", RESOLUCION, POS_VENTANA, COLOR_FORM)

label_t = Label(FORM1)
imagen = Imagen(FORM1)
label_t.config("Titulo", 10, 10, 140, 25, "centrada")
imagen.config(50, 50, 100, 100)

FORM1.dibujar()
label_t.dibujar()
imagen.dibujar()


def fun_calback(Codigo, Mensaje):
    if Codigo != 4:
        print("COD: ", Codigo, "Men: ", Mensaje)
    else: