• The added line is THIS COLOR.
  • The deleted line is THIS COLOR.
[[Python/GUI]]

- PythonでGUIアプリを作る方法【Tkinter】
--  https://wynn-blog.com/make-gui-application-with-python?
>
 import tkinter
 root = tkinter.Tk()
 root.title("Python GUI")
 root.geometry("360x240")
 root.mainloop()


- python tkinterでドラッグアンドドロップ
--  https://emotionexplorer.blog.fc2.com/blog-entry-50.html
>
 root.drop_target_register(DND_FILES)
 root.dnd_bind('<>', drop)


Reload   Diff   Front page List of pages Search Recent changes Backup Referer   Help   RSS of recent changes