Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 1ef5809

Browse files
committed
first commit/primeiro comentario
0 parents commit 1ef5809

File tree

12 files changed

+57
-0
lines changed

12 files changed

+57
-0
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
from tkinter import Label, Widget
2+
3+
widget = Label(None, text='hello gui world/ola mundo gui')
4+
widget.pack()
5+
widget.mainloop()
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
from tkinter import Label, Widget
2+
3+
widget = Label(None, text='hello gui world/ola mundo gui')
4+
widget.pack()
5+
widget.mainloop()
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import tkinter
2+
3+
janela = tkinter.Label(None, text='hellow gui world/ola mundo gui')
4+
janela.pack()
5+
janela.mainloop()
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
from tkinter import *
2+
root = Tk()
3+
Label(None, text='hellow gui world/ola mundo gui').pack(side=TOP)
4+
root.mainloop()
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from tkinter import *
2+
Label(text='hello world').pack()
3+
mainloop()
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
from tkinter import *
2+
Label(text='hello gui world').pack(expand=YES, fill=BOTH)
3+
4+
mainloop()
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
from tkinter import *
2+
3+
widget=Label()
4+
widget['text'] = 'hello gui world'
5+
widget.pack(side=TOP)
6+
7+
mainloop()
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
from tkinter import *
2+
root = Tk()
3+
widget = Label(root)
4+
widget.config(text='hellow gui world')
5+
widget.pack(side=TOP, expand=YES, fill=BOTH)
6+
7+
8+
root.title('gui g')
9+
mainloop()
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
from tkinter import *
2+
Label(None, {'text':'hello gui world', Pack:{'side': 'top'}}).mainloop()

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /