MCPcopy Create free account
hub / github.com/geekcomputers/Python / show_button

Method show_button

Test-Case-Generator/test_case.py:412–429  ·  view source on GitHub ↗
(self, r)

Source from the content-addressed store, hash-verified

410 self.char_list.grid(row=r, column=1, columnspan=2, padx=10)
411
412 def show_button(self, r):
413 self.back_btn = Button(
414 gui,
415 text=" HOME ",
416 command=lambda: self.forget_testcase_take_input_screen(1),
417 font="calibre",
418 bd=3,
419 )
420 self.sub_btn = Button(
421 gui, text=" GENERATE ", command=self.submit, font="calibre", bd=3
422 )
423 self.exit_btn = Button(
424 gui, text=" EXIT ", command=lambda: gui.destroy(), font="calibre", bd=3
425 )
426 self.back_btn.grid(row=r, column=0, pady=(20, 20), ipady=1)
427 self.sub_btn.grid(row=r, column=1, pady=(20, 20), ipady=1)
428 self.exit_btn.grid(row=r, column=2, pady=(20, 20), ipady=1)
429 self.copyright_label.place(relx=0.9, y=0)
430
431 def submit(self):
432 try:

Callers 10

take_inputMethod · 0.80
take_inputMethod · 0.80
take_inputMethod · 0.80
take_inputMethod · 0.80
take_inputMethod · 0.80
take_inputMethod · 0.80
take_inputMethod · 0.80
take_inputMethod · 0.80
take_inputMethod · 0.80
take_inputMethod · 0.80

Tested by

no test coverage detected