Skip to content

Instantly share code, notes, and snippets.

@hikari-no-yume
Created June 10, 2011 18:50
Show Gist options
  • Save hikari-no-yume/1019484 to your computer and use it in GitHub Desktop.
Save hikari-no-yume/1019484 to your computer and use it in GitHub Desktop.
from Tkinter import *
class EasyBitcoin:
def __init__(self, master):
master.grid_propagate(False)
topframe = Frame(master, width=640)
topframe.pack(side=TOP)
title = Label(topframe, text="This should be a title")
title.pack()
sidebar = Frame(master)
sidebar.pack(side=LEFT)
sidebartitle = Label(sidebar, text="Actions")
sidebartitle.pack(side=TOP)
root = Tk()
app = EasyBitcoin(root)
root.mainloop()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment