コード例 #1
0
 def btnBack(self):
     from GUI.noteListGUI import noteListGUI
     self.root.destroy()
     noteListGUI()
コード例 #2
0
 def btnSave(self, title, content):
     from GUI.noteListGUI import noteListGUI
     Note.add_note(None, title, content)
     tkinter.messagebox.showinfo("추가 확인", "추가되었습니다")
     self.root.destroy()
     noteListGUI()
コード例 #3
0
ファイル: noteDetailGUI.py プロジェクト: juhyun5060/EAT-IT
 def btnDelete(self, title):
     from GUI.noteListGUI import noteListGUI
     Note.delete_note(None, title)
     tkinter.messagebox.showinfo("삭제 확인", "삭제되었습니다")
     self.root.destroy()
     noteListGUI()
コード例 #4
0
ファイル: mainGUI.py プロジェクト: juhyun5060/EAT-IT
 def noteClick(self):
     from GUI.noteListGUI import noteListGUI
     self.root.destroy()
     noteListGUI()
コード例 #5
0
 def btnSave(self, title, mTitle, mContent):
     from GUI.noteListGUI import noteListGUI
     Note.update_note(None, title, mTitle, mContent)
     tkinter.messagebox.showinfo("수정 확인", "수정되었습니다")
     self.root.destroy()
     noteListGUI()