Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(3) | Call(2) | Derive(0) | Import(1)
A specialized entry class to use for search dialogs, which allows an action while typing.
src/c/h/chessproblem.ui-0.3.3/chessproblem/ui/info.py chessproblem.ui(Download)
from common import ScrollableListbox from common import SearchEntry from common import ListEditDialog
self.search_label = tk.Label(search_frame, text='Search') self.search_label.grid(row=0, column=0) self.search_entry = SearchEntry(search_frame, self.search_authors) self.search_entry.grid(row=0, column=1) self.author_listbox = ScrollableListbox(search_frame, width=30)
self.searchlabel = tk.Label(master, text='Search: ') self.searchlabel.grid(row=0, column=0) self.searchentry = SearchEntry(master, self.search) self.searchentry.grid(row=0, column=1) self.authorsearchbox = ScrollableListbox(master)