Bug interface tkinter

Fermé
MMaxouB Messages postés 1 Date d'inscription samedi 18 novembre 2023 Statut Membre Dernière intervention 19 novembre 2023 - 19 nov. 2023 à 14:27
Phil_1857 Messages postés 1872 Date d'inscription lundi 23 mars 2020 Statut Membre Dernière intervention 28 février 2024 - 22 nov. 2023 à 17:09

Bonjour, j'essaye de placer l'icon de mr Beast mais l'image elle ne bouge pas quelqu'un pourrai m'aider ?

Et quand j'essaye d'afficher uniquement la frame elle ne s'affiche pas

import string
from random import *
from tkinter import *

#creation de la fenetre
window = Tk()

#personnalisation de la fenetre
window.title("ytb chaines")
window.geometry("720x720")
window.minsize(720, 720)
window.iconbitmap("ytb\youtube_icon.ico")
window.config(background='#ffffff')

#creation de la frame mr beast
frame_mrbeast = Frame(window, bg='#4065A4')
frame_mrbeast.grid(row=1,column=1)


# personnalisation de la frame mr_beast : image
width = 900
height = 900
image = PhotoImage(file="icon_mr_beast.png").zoom(1).subsample(5)
canvas = Canvas(frame_mrbeast, width=width, height=height, bg='#ffffff', bd=0, highlightthickness=0)
canvas.create_image(width/2, height/2, image=image)
canvas.pack()

# creation de la sous-frame
frame_mrbeast1 = Frame(frame_mrbeast,bg='#4065A4')
frame_mrbeast1.pack()

# personnalisation de la frame mr_beast : texte
label = Label(frame_mrbeast, text="Mr beast")
label.pack(expand=YES)

window.mainloop()


Windows / Edge 119.0.0.0

A voir également:

2 réponses

Phil_1857 Messages postés 1872 Date d'inscription lundi 23 mars 2020 Statut Membre Dernière intervention 28 février 2024 168
Modifié le 20 nov. 2023 à 13:33

Tu veux faire quoi exactement avec ce code ?

tu créé des frames, un canvas, tu y mets une image, un label "Mr beast"

et ensuite ?

Pourquoi voudrais-tu que l'image bouge ?

0
Phil_1857 Messages postés 1872 Date d'inscription lundi 23 mars 2020 Statut Membre Dernière intervention 28 février 2024 168
22 nov. 2023 à 17:09

Bonjour,

Alors, du nouveau ?

0