CTkTopLevelとは、サブウインドウのようなもので
そのTopLevelでの画像表示についての解説
そもそも画像表示は、CTkImageで表示出来るが、
image= ctk.CTkImage(dark_image=Image.open(path, size=(width, height))
pathには、画像のパス(道順)が明記されている事
そこで、pathlibを使う
import pathlib #ボタン画像のあるディレクトリ image_path = pathlib.Path("C:/users/ユーザー名/作業物/中略/ボタン画像") kj_image = ctk.CTkImage(dark_image=Image.open(image_path.joinparh('電圧源の設定例.png', size=(280, 300))
これで表示出来る様になる
これを有効利用してアプリ開発を進めていく