0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

PythonでGUIアプリを作りたい(Tkinter編)

Last updated at Posted at 2022-08-12

PythonでGUIアプリを作るにはTkinterを使うと簡単です。
Tkinterが標準モジュールですのでインポートするだけで使用できます。

import tkinter as tk

とりあえずウインドウを表示させてみます。

import tkinter as tk

# メインウィンドウの生成
root = tk.Tk()

# メインループ(ウインドウを表示する)
root.mainloop()

tkinter_gui_001.png

何も表示されていませんがウインドウが表示されました。

タイトルバーの表示

# ウインドウタイトルの表示
root.title("Sample Code")
# ウインドウサイズを設定
root.geometry("640x480")
# ウインドウサイズの変更を禁止
root.resizable(False, False)
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?