Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from guizero import App, Text, TextBox, PushButton, Box
- app = App(title="texteditor", bg = "gold")
- # function for reading files
- def open_file():
- with open(file_name.value, "r") as f:
- editor.value = f.read()
- # function for writing files
- def save_file():
- with open(file_name.value, "w") as f:
- f.write(editor.value)
- # create a box to house the controls, we want the box to span the entire width of the app
- file_controls = Box(app, align="top", width="fill")
- # create a TextBox for the file name
- file_name = TextBox(file_controls, text="text_file.txt", width=50, align="left")
- # create a save button which uses the save_file function
- #save_button = PushButton(file_controls, text="Save", align="right")
- save_button = PushButton(file_controls, text="Save", command=save_file, align="right")
- # create an open button which uses the open_file function
- open_button = PushButton(file_controls, text="Open", align="right")
- # create a TextBox which is not in the box and fills the rest of the GUI with text_size = 15
- editor = TextBox(app, multiline=True, height="fill", width="fill")
- editor.text_size = 15
- app.display()
Advertisement
Add Comment
Please, Sign In to add comment