Cuadro de mensaje: se usa para mostrar una ventana que tiene un mensaje o información en EasyGUI, se puede usar cuando es necesario mostrar algún mensaje o alguna información importante, contiene un mensaje y un botón «Aceptar» que cuando se presiona cierra el mensaje, a continuación se muestra cómo se ve el cuadro de mensaje
EasyGUI es un módulo para una programación GUI muy simple y fácil en Python. EasyGUI es diferente de otros generadores de GUI en que EasyGUI NO está controlado por eventos. En su lugar, todas las interacciones de la GUI se invocan mediante simples llamadas a funciones. A diferencia de otras GUI complicadas, EasyGUI es la GUI más simple hasta ahora. EasyGUI depende del módulo Tkinter.
Para hacer esto, usaremos el método msgbox
Sintaxis: msgbox (mensaje, título, ok_button_text)
Argumento: Se necesitan 3 argumentos, la primera string, es decir, el mensaje/información que se mostrará, la segunda string, es decir, el título de la ventana y la tercera es la string, es decir, mostrar texto del botón OK
Volver : Devuelve el texto del botón OK
Ejemplo:
en esto, crearemos un cuadro de mensaje con un mensaje y configuraremos el texto de visualización del botón Aceptar, a continuación se muestra la implementación.
Python3
# importing easygui module from easygui import * # message / information to be displayed on the screen message = "This is a Message Box in EasyGUI" # title of the window title = "GfG - EasyGUI" # text of the Ok button ok_btn_txt = "Continue" # creating a message box output = msgbox(message, title, ok_btn_txt) # printing the output print("User pressed : " + output)
Producción :
User pressed : Continue
Otro ejemplo
En este, crearemos una ventana con mensaje y título pero sin cambiar el texto del botón Aceptar.
Python3
# importing easygui module from easygui import * # message / information to be displayed on the screen message = "This is a Message Box in EasyGUI (GeeksforGeeks)" # title of the window title = "GfG - EasyGUI" # creating a message box output = msgbox(message, title) # printing the output print("User pressed : " + output)
Producción :
User pressed : OK
Publicación traducida automáticamente
Artículo escrito por rakshitarora y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA