luiz carlos Posted October 30, 2023 at 06:21 PM Report Share #632003 Posted October 30, 2023 at 06:21 PM (edited) from tkinter import * tela = TK() tela.resizable(False , False) tela.title('Bot') menssagem =label(Text= 'Giros double brazer',bg='black',fg='white',heigt=2,front=("", 12), width=96) menssagem.Grid(row=0,column=0) o que esta erado aqui Edited November 7, 2023 at 11:01 AM by thoga31 GeSHi Link to comment Share on other sites More sharing options...
thoga31 Posted November 7, 2023 at 11:02 AM Report Share #632089 Posted November 7, 2023 at 11:02 AM O que era suposto acontecer e o que está a ocorrer? Sem algum nível de detalhe na dúvida não podemos ajudar. Knowledge is free! Link to comment Share on other sites More sharing options...
Ivo Vicente Posted November 8, 2023 at 02:10 PM Report Share #632101 Posted November 8, 2023 at 02:10 PM Eu não sou a pessoa mais indicada para falar de Python sou mero curioso, mas do pouco que vi deixo-te os seguintes pontos. A tela é um novo objeto Tk() e não TK() A label deve ser ttk.Label e o grid() tem que ser definido após teres uma ttk.Frame(...) Para uma janela simples, já começa com várias falhas. Deves pelo menos consultar a documentação do tkinter (https://docs.python.org/3/library/tkinter.html#a-hello-world-program) Mas antes aconselho a conhecer e familiarizares com Python, saltar logo para criação de interfaces visuais pode tornar-se frustrante. Feito é melhor que perfeito Link to comment Share on other sites More sharing options...
FranciscoAraujo Posted January 7, 2024 at 07:19 PM Report Share #632600 Posted January 7, 2024 at 07:19 PM Faltam algumas coisas no código como por exemplo um loop e também tens alguns erros de escrita nele Código: from tkinter import * tela = Tk() tela.resizable(False , False) tela.title('Bot') menssagem=Label(text='Giros double brazer',bg='black',fg='white',height=2,font=("", 12), width=96 ) menssagem.grid(row=0,column=0) tela.mainloop() Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now