元のコード:
search_button = Button(Frame3, text="Search", command=lambda: displaySelected(), bg="black", fg="white", font=('Arial', 10),padx=5,pady=5)
search_button.place(x=210, y=190)
元の出力がどのように見えるか: クリックして表示すると、視覚化が向上します (青い円に注目し、そこにある他の機能は無視してください)。
DisplaySelected() の機能: 基本的に、ユーザーが選択した国と機関に基づいてデータを表示します
私が試したこと:
search_pic = PhotoImage(file="search.png")
search_button = Button(Frame3, image=search_pic, command=lambda: displaySelected(), bg="black", fg="white", font=('Arial', 10),padx=5,pady=5)
search_button.place(x=210, y=190)
基本的に、同じ機能を実行したいのですが、「検索」ボタンの代わりに、見栄えを良くするためにpngファイルに置き換えたいだけです。ただし、コードを実行すると、何らかの理由で png が表示されませんか?