# モジュールインポート # Pythonのモジュールとimportとfrom入門 - Qiita https://qiita.com/niwaka_dev/items/6e3d9ff6d797243c77c3
## tkinter モジュールを Tk というエイリアスでインポートする 標準ライブラリ
import tkinter
############
# ウィンドウの基本設定
## rootの設定
root = tkinter.Tk()
root.title("Untitled.txt") # タイトルバーに表示される文字列を指定する
x, y=644,188 # 最初のウィンドウサイズを指定する
root.geometry('%dx%d' % (x, y))
## 作成したウィンドウのグリッドを行列指定
root.rowconfigure(0, weight=1)
root.columnconfigure(0, weight=1)
## テキスト入力エリア TextArea を作成
TextArea = tkinter.Text(root, font="メイリオ 8",wrap=tkinter.CHAR,undo=True,maxundo=0)
### wrap=tkinter.CHAR 文字単位で折り返す
### undo=True,maxundo=0 undoを有効にして、何回でもundoできる(0以下で無限)
############
# gridの設定
## テキスト入力エリア
TextArea.grid(row=0,column=0,sticky=tkinter.NSEW)
#################
# メインループ
root.mainloop()