Skip to content

Instantly share code, notes, and snippets.

@nkenna
Created September 4, 2018 13:06
Show Gist options
  • Save nkenna/5bcb66bd7089e0d8181610051ffa7483 to your computer and use it in GitHub Desktop.
Save nkenna/5bcb66bd7089e0d8181610051ffa7483 to your computer and use it in GitHub Desktop.
#windows starts
# all the windows are created here and are hidden immediately
app = App(title="Biometeric System", width=210, height=210,layout="grid")
admin_menu_window = Window(app, title="Admin Menu", width=210, height=210,layout="grid")
admin_menu_window.hide()
admin_mainmenu_pass_window = Window(app, title="Authenication yourself", width=210, height=210)
admin_mainmenu_pass_window.hide()
mainmenu_window = Window(app, title="Main Menu", width=210, height=210)
mainmenu_window.hide()
enroll_window = Window(app, title="Enroll", width=210, height=210)
enroll_window.hide()
change_pass_password_window = Window(app, title="Provide authenication", width=210, height=210)
change_pass_password_window.hide()
change_password_window = Window(app, title="Change Password", width=210, height=210)
change_password_window.hide()
delete_menu_window = Window(app, title="Delete Menu", width=210, height=210)
delete_menu_window.hide()
#windows ends
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment