Linux lorencats.com 5.10.103-v7l+ #1529 SMP Tue Mar 8 12:24:00 GMT 2022 armv7l
Apache/2.4.59 (Raspbian)
: 10.0.0.29 | : 216.73.216.10
Cant Read [ /etc/named.conf ]
7.3.31-1~deb10u7
root
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
python3-guizero /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
after_repeat.py
629
B
-rw-r--r--
alert.py
93
B
-rw-r--r--
aligning.py
1.08
KB
-rw-r--r--
animated_picture.py
301
B
-rw-r--r--
app_events.py
1.36
KB
-rw-r--r--
auto_update_example.py
511
B
-rw-r--r--
binary_counter.py
607
B
-rw-r--r--
box.py
164
B
-rw-r--r--
button.py
283
B
-rw-r--r--
button_group.py
503
B
-rw-r--r--
button_toggle_state.py
409
B
-rw-r--r--
button_value.py
327
B
-rw-r--r--
changing_sizes.py
781
B
-rw-r--r--
checkbox.py
152
B
-rw-r--r--
clickable_waffle.py
504
B
-rw-r--r--
colors_and_text.py
1016
B
-rw-r--r--
colour_example.py
764
B
-rw-r--r--
combo.py
284
B
-rw-r--r--
demo.py
1.7
KB
-rw-r--r--
demo_converted_from_tk_v1.py
2.83
KB
-rw-r--r--
demo_converted_from_tk_v2.py
2.77
KB
-rw-r--r--
floodit.py
2.77
KB
-rw-r--r--
grid_layout.py
846
B
-rw-r--r--
guizero.gif
20.47
KB
-rw-r--r--
guizero.jpg
61.1
KB
-rw-r--r--
guizero.png
56.83
KB
-rw-r--r--
guizero_flash.gif
38.93
KB
-rw-r--r--
hide_show_test.py
1.16
KB
-rw-r--r--
layout_beyonce.py
382
B
-rw-r--r--
layout_boxes.py
697
B
-rw-r--r--
layout_form.py
561
B
-rw-r--r--
layout_settings.py
1.01
KB
-rw-r--r--
layout_terms.py
1.6
KB
-rw-r--r--
listbox.py
780
B
-rw-r--r--
load_picture.py
201
B
-rw-r--r--
massive_waffle.py
832
B
-rw-r--r--
menu_bar.py
532
B
-rw-r--r--
multi_app.py
547
B
-rw-r--r--
multi_box.py
1.15
KB
-rw-r--r--
multi_window.py
625
B
-rw-r--r--
multiline_textbox.py
563
B
-rw-r--r--
on_close.py
363
B
-rw-r--r--
picture_button.py
413
B
-rw-r--r--
random_appearance.py
1.06
KB
-rw-r--r--
resize_picture.py
398
B
-rw-r--r--
resize_picture_button.py
457
B
-rw-r--r--
resize_waffle.py
618
B
-rw-r--r--
scale_picture.py
514
B
-rw-r--r--
sensehat_read_data.py
3.98
KB
-rw-r--r--
slider_textbox.py
202
B
-rw-r--r--
textbox.py
393
B
-rw-r--r--
waffle.py
627
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : multi_box.py
from guizero import App, Box, Text, PushButton, Combo, Slider def switch_screen(switch_to): hide_all() switch_to.show() def hide_all(): for screen in all_screens: screen.hide() app = App("Multi box app", layout="grid") # Create a blank list to hold all the different screens all_screens = [] # Create a box to contain the menu buttons menu = Box(app, grid=[0,0], layout="grid") menu.tk.width = 900 menu.bg = "red" # Option 1 box option1 = Box(app, grid=[1,1]) text1 = Text(option1, text="This is the first page of stuff") combo = Combo(option1, options=["Beef", "Chicken", "Fish", "Vegetarian"]) all_screens.append(option1) # Option 2 box option2 = Box(app, grid=[1,1]) text2 = Text(option2, text="This is the second page of stuff") slider = Slider(option2) all_screens.append(option2) # Add the screens to the menu box option1_button = PushButton(menu, text="Option 1", command=switch_screen, args=[option1], grid=[0,0], align="left") option2_button = PushButton(menu, text="Option 2", command=switch_screen, args=[option2], grid=[1,0], align="left") # Hide all screens and then show the first one hide_all() all_screens[0].show() app.display()
Close