Continuar Cancelar Cuadro: Se usa para mostrar una ventana que tiene dos opciones continuar o cancelar en EasyGUI, se puede usar cuando es necesario mostrar dos opciones continuar o cancelar, por ejemplo, cuando queremos confirmar la opción si se presiona continuar la aplicación avanzará, de lo contrario se cancelará, a continuación se muestra cómo se ve el cuadro de cancelación continua
Para ello utilizaremos el
msgbox
métodoSintaxis: ccbox (mensaje, título, opciones)
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 una lista que tiene exactamente dos valores, que son dos opciones para continuar y cancelar
Retorno : Devuelve Verdadero es continuar se presiona de lo contrario Falso
Ejemplo:
en esto, crearemos un cuadro de cancelación continua, cuando se presione cualquier botón, mostrará el mensaje específico en la pantalla, a continuación se muestra la implementación
# importing easygui module from easygui import * # message / information to be displayed on the screen message = "You want to learn more about EasyGUI ?" # title of the window title = "GfG - EasyGUI" # creating a continue cancel box output = ccbox(message, title) # if user pressed continue if output: # message / information to be displayed on the screen message = "Go to GeeksforGeeks to learn more about EasyGUI" # title of the window title = "GfG - EasyGUI" # creating a message box msg = msgbox(message, title) # if user pressed cancel else: # message / information to be displayed on the screen message = "Ok No Problem" # title of the window title = "GfG - EasyGUI" # creating a message box msg = msgbox(message, title)
Producción :
Otro ejemplo:
en esto, crearemos un cuadro de cancelación continua con texto nuevo para el botón cancelar y continuar, cuando se presiona cualquier botón, se mostrará el mensaje específico en la pantalla, a continuación se muestra la implementación
# importing easygui module from easygui import * # message / information to be displayed on the screen message = "You want to learn more about EasyGUI ?" # title of the window title = "GfG - EasyGUI" # button names choices = ["Let's Go", "End This !"] # creating a continue cancel box output = ccbox(message, title, choices) # if user pressed continue if output: # message / information to be displayed on the screen message = "Go to GeeksforGeeks to learn more about EasyGUI" # title of the window title = "GfG - EasyGUI" # creating a message box msg = msgbox(message, title) # if user pressed cancel else: # message / information to be displayed on the screen message = "Ok No Problem" # title of the window title = "GfG - EasyGUI" # creating a message box msg = msgbox(message, title)
Producción :
Publicación traducida automáticamente
Artículo escrito por rakshitarora y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA