コンピュータpythonのtkinterでスケール(トラックバー)を試す # tkinter10.py# スケール(トラックバー)のサンプルimport tkinter as tkclass Application(tk.Frame): def __init__(self, master = None): sup... 2024.08.12コンピュータ
コンピュータpythonのtkinterでドラッグアンドドロップで画像を表示するイメージビューワー ドラッグアンドドロップとキャンバスを組み合わせて画像を表示させてみたいと思います。# tkinter09.py# ドラッグアンドドロップで画像を表示するイメージビューワーimport tkinter as tkfrom tkinterdnd... 2024.08.12コンピュータ
コンピュータpythonのtkinterでエントリー(テキストボックス)を試す 文字を入力を試します。# tkinter08.py# エントリー(テキストボックス)のサンプルimport tkinter as tkclass Application(tk.Frame): def __init__(self, maste... 2024.08.12コンピュータ
コンピュータpythonのtkinterでButtonを試す 「実行」Buttonを押すと文字列が表示されるスクリプトを作成しました。# tkinter07.py# ボタンのサンプルimport tkinter as tkclass Application(tk.Frame): def __init_... 2024.08.11コンピュータ
コンピュータpythonのtkinterでメニューバーを設定 tkinterでメニューバーの設定を試してみました。# tkinter06.py# メニューimport tkinter as tkclass Application(tk.Frame): def __init__(self, master... 2024.08.10コンピュータ
コンピュータpythonのtkinterでメッセージボックスを表示 メッセージボックスを試してみます。showinfofrom tkinter import messageboxr = messagebox.showinfo(title="タイトル", message="メッセージ")print(r)戻り値... 2024.08.09コンピュータ
コンピュータpythonのtkinterでcanvasに画像ファイルを読み込み表示 画像ファイルを読み込み表示するサンプルプログラムを試して見ました。# tkinter04.py# canvasで画像ファイルを表示import tkinter as tkroot = tk.Tk()root.geometry("640x48... 2024.08.03コンピュータ
コンピュータpythonとtkinterによるドラッグアンドドロップ エクスプローラーなどからファイルをドラックアンドドロップしてファイルのパスをコンソールを出力するだけのサンプルスクリプトを動かしてみます。サンプルスクリプト# tkinter03.py# ドラッグアンドドロップのサンプル# モジュールのイン... 2024.08.01コンピュータ
コンピュータpythonのtkinterでラベルの配置 tkinterのウィジェット(Label,ButtonなどGUIを構成する部品。別の文化ではコントロールとも)の配置を確認するためラベルを作成してみます。# tkinter02.py# ラベルのサンプルimport tkinter as t... 2024.07.29コンピュータ
コンピュータpythonのtkinterでウィンドウを作成 tkinterモジュールを使うとpythonでGUIを作ることが出来るらしいので試してみます。とりあえずウィンドウを作るサンプルスクリプトを作成してみます。import tkinter as tkclass MyFrame(tk.Frame... 2024.07.28コンピュータ