!!!tkinter !!tkinterのインストール *[Tkinter のインストール|http://python.keicode.com/advanced/tkinter-install.php] !!モジュール python2.7 : import Tkinter python3 : import tkinter 他にもファイル読み出し、メッセージボックス表示が異なる !!メインメニュー !☓ボタン無効 *[python - Overriding Tkinter "X" button control (the button that close the window) - Stack Overflow|https://stackoverflow.com/questions/3295270/overriding-tkinter-x-button-control-the-button-that-close-the-window] def doSomething: #ここに記入 root.protocol('WM_DELETE_WINDOW', doSomething) !画面サイズ調整無効 *[tkinterの勉強(ウィンドウサイズ変更を禁止する)|https://ameblo.jp/hitochan007/entry-12014898453.html] root.resizable(0,0) 0 : 無効  1 : 有効 !画面中央に表示 *[Center a Tkinter Window|https://www.daniweb.com/programming/software-development/threads/66181/center-a-tkinter-window] !!ファイル *[Tkinter tkFileDialog module – Python Tutorial|https://pythonspot.com/tk-file-dialogs/] *[Pythonでパスからファイル名を取得する - Python入門|http://kaworu.jpn.org/python/Python%E3%81%A7%E3%83%91%E3%82%B9%E3%81%8B%E3%82%89%E3%83%95%E3%82%A1%E3%82%A4%E3%83%AB%E5%90%8D%E3%82%92%E5%8F%96%E5%BE%97%E3%81%99%E3%82%8B] !!スクロールバー *[PythonのTkinterでGUIアプリを作る - Qiita|https://qiita.com/canard0328/items/5ea096352e160b8ececa] !!画像 *[コマンドラインから画像形式を変換する|https://qiita.com/tadsan/items/e718cf3a90fc29f61107] $ sudo apt -y install imagemagick $ convert 元の画像 -quality 100 変換する画像名 *[コマンドラインで画像を縮小する:ImageMagick convert mogrify|http://d.hatena.ne.jp/weblinuxmemo/20090929/p1] $ convert -resize 320x -unsharp 2x1.4+0.5+0 -colors 65 -quality 100 -verbose a.png b.png !!メッセージボックス !python2.7 *[Python で Tkinter を使って MessageBox を表示する。|http://d.hatena.ne.jp/Cassiopeia/20070818/1187416973] !!その他 *[Python Tkinter|https://detail.chiebukuro.yahoo.co.jp/qa/question_detail/q13127833413]