kubernetes-sigs / application

Application metadata descriptor CRD
Apache License 2.0
511 stars 162 forks source link

Logo marketing #232

Closed Tahamokdad56 closed 7 months ago

Tahamokdad56 commented 1 year ago

def choose_color(): color = colorchooser.askcolor()[1] color_label.config(bg=color)

def create_logo(): logo_text = text_entry.get() logo_color = color_label.cget("bg")

# Ici, vous pouvez utiliser des bibliothèques pour générer un logo avec le texte et la couleur choisis

result_label.config(text="Logo créé avec succès!")

Créer une fenêtre

window = tk.Tk() window.title("Application de Création de Logos")

Widgets

text_label = tk.Label(window, text="Texte du Logo:") text_label.pack()

text_entry = tk.Entry(window) text_entry.pack()

color_button = tk.Button(window, text="Choisir Couleur", command=choose_color) color_button.pack()

color_label = tk.Label(window, text="Couleur de Fond") color_label.pack()

create_button = tk.Button(window, text="Créer Logo", command=create_logo) create_button.pack()

result_label = tk.Label(window, text="") result_label.pack()

Boucle principale

window.mainloop()

k8s-triage-robot commented 7 months ago

The Kubernetes project currently lacks enough contributors to adequately respond to all issues.

This bot triages un-triaged issues according to the following rules:

You can:

Please send feedback to sig-contributor-experience at kubernetes/community.

/lifecycle stale

ant31 commented 7 months ago

/close

k8s-ci-robot commented 7 months ago

@ant31: Closing this issue.

In response to [this](https://github.com/kubernetes-sigs/application/issues/232#issuecomment-1937760162): >/close Instructions for interacting with me using PR comments are available [here](https://git.k8s.io/community/contributors/guide/pull-requests.md). If you have questions or suggestions related to my behavior, please file an issue against the [kubernetes/test-infra](https://github.com/kubernetes/test-infra/issues/new?title=Prow%20issue:) repository.