using Tk
w =Toplevel("Example") ## A titled top level window
f =Frame(w, padding = [3,3,2,2], relief="groove") ## A Frame with some options setpack(f, expand =true, fill ="both") ## using pack to manage the layout of f
b =Button(f, "Click for a message") ## Button constructor has convenience interfacegrid(b, 1, 1) ## use grid to pack in b. 1,1 specifies location## A callback to open a messagecallback(path) =Messagebox(w, title="A message", message="Hello World")
bind(b, "command", callback) ## bind callback to 'command' optionbind(b, "<Return>", callback) ## press return key when button has focus
This website serves as a package browsing tool for the Julia programming language. It works by aggregating various sources on Github to help you find your next package.