Exemplo n.º 1
0
 def make_listbox(self):
     return listbox.Listbox(
         self,
         (0, 0),
         (-1, -.85),
         anchor=constants.TOP_LEFT,
         on_double_click_on_item=self.yes_button.activated,
     )
Exemplo n.º 2
0
 def make_listbox(self):
     return listbox.Listbox(self, (0, 0), (-1, -.85),
                            anchor=constants.TOP_LEFT,
                            align=constants.LEFT,
                            item_borders=False,
                            item_selectable=False)
Exemplo n.º 3
0
 def make_listbox(self):
     return listbox.Listbox(self, (0, -.09), (-1, -.77),
                            list_item_height=0.04, list_item_shrink=1,
                            anchor=constants.TOP_LEFT, align=constants.LEFT,
                            on_double_click_on_item=self.handle_double_click,
                            item_borders=False, item_selectable=True)