mirror of
https://github.com/bytedream/aion.git
synced 2025-06-27 15:00:32 +02:00
Add files via upload
This commit is contained in:
22
aion-0.1.0_alpha/etc/ACC/acc_test.py
Normal file
22
aion-0.1.0_alpha/etc/ACC/acc_test.py
Normal file
@ -0,0 +1,22 @@
|
||||
from tkinter import *
|
||||
|
||||
root = Tk()
|
||||
frame = Frame(root)
|
||||
frame.pack()
|
||||
|
||||
bottomframe = Frame(root)
|
||||
bottomframe.pack( side = BOTTOM )
|
||||
|
||||
redbutton = Button(frame, text="Red", fg="red")
|
||||
redbutton.pack( side = LEFT)
|
||||
|
||||
greenbutton = Button(frame, text="green", fg="green")
|
||||
greenbutton.pack( side = LEFT )
|
||||
|
||||
bluebutton = Button(frame, text="Blue", fg="blue")
|
||||
bluebutton.pack( side = LEFT )
|
||||
|
||||
blackbutton = Button(bottomframe, text="Black", fg="black")
|
||||
blackbutton.pack( side = BOTTOM)
|
||||
|
||||
root.mainloop()
|
Reference in New Issue
Block a user