Home > GUIプログラミング


Pythonのtkinterを使ったHello Worldアプリの作成方法

まず、以下のコードを使用して、基本的なHello Worldアプリを作成します。import tkinter as tk def say_hello(): print("Hello World!") root = tk.Tk() hello_button = tk.Button(root, text="Click me!", command=say_hello) hello_button.pack() root.mainloop()>>More


Pythonでの基本的なTkinterウィンドウの作成方法

以下に、Tkinterを使用して基本的なウィンドウを作成する方法の例を示します。import tkinter as tk # ウィンドウを作成するためのクラスを定義する class BasicWindow: def __init__(self, root): self.root = root self.root.title("基本ウィンドウ") # ウィンドウのサイズを設定する self.root.geometry("400x300") # ラベルを作成して配置する self.label>>More