Пример #1
0
 def show_about_dialog(self, *args):
     d = AboutDialog(self,
                     window_title='About Binary Code Translator',
                     about_title='Binary Code Translator',
                     content='Developed and written by:\n'
                     '\tDenniel Luis Saway Sadian '
                     '(https://denniel-sadian.github.io)\n\n'
                     'Date of creation:\n'
                     '\tMarch 10, 2018\n\n'
                     'Description:\n'
                     '\tThis app can translate text to binary and '
                     'binary to text.',
                     image='binary.png')
     d.wm_iconbitmap('binary.ico')
     d.mainloop()
     return args
Пример #2
0
 def show_about(self, *args):
     window = AboutDialog(
         self,
         window_title='About Tailoring Management System',
         about_title='Tailoring Management System',
         content='Developed and written by:\n'
         '\tDenniel Luis Saway Sadian '
         '(https://denniel-sadian.github.io)\n\n'
         'Date of creation:\n'
         '\tJuly ‎15, ‎2018\n\n'
         'Description:\n'
         "\tThis application's purpose is to be used in shops that "
         "stitch clothes. They don't have to use papers to write down "
         "their clients' information",
         image='tms.png')
     window.wm_iconbitmap('tms.ico')
     window.mainloop()
     return args
 def show_about(self, *args):
     window = AboutDialog(
         self,
         window_title='About LyricsManager',
         about_title='Lyrics Manager',
         content='Developed and written by:\n'
         '\tDenniel Luis Saway Sadian '
         '(https://denniel-sadian.github.io)\n\n'
         'Date of creation:\n'
         '\tJanuary 9, 2018\n\n'
         'Description:\n'
         '\tThis application lets you store, create and view '
         'your favorite lyrics. It is written completely in '
         'Python Programming Language and uses Tkinter as '
         'its GUI framework.',
         image='lm.png')
     window.wm_iconbitmap('ic.ico')
     window.mainloop()
     return args