當前位置: 首頁>>代碼示例>>Python>>正文


Python Tkinter.Widget方法代碼示例

本文整理匯總了Python中Tkinter.Widget方法的典型用法代碼示例。如果您正苦於以下問題:Python Tkinter.Widget方法的具體用法?Python Tkinter.Widget怎麽用?Python Tkinter.Widget使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Tkinter的用法示例。


在下文中一共展示了Tkinter.Widget方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: get_app

# 需要導入模塊: import Tkinter [as 別名]
# 或者: from Tkinter import Widget [as 別名]
def get_app(self, parent):
        """
        If the plugin provides mainwindow content create and return it.
        :param parent: the parent frame for this entry.
        :returns: None, a tk Widget, or a pair of tk.Widgets
        """
        plugin_app = self._get_func('plugin_app')
        if plugin_app:
            try:
                appitem = plugin_app(parent)
                if appitem is None:
                    return None
                elif isinstance(appitem, tuple):
                    if len(appitem) != 2 or not isinstance(appitem[0], tk.Widget) or not isinstance(appitem[1], tk.Widget):
                        raise AssertionError
                elif not isinstance(appitem, tk.Widget):
                    raise AssertionError
                return appitem
            except:
                print_exc()
        return None 
開發者ID:EDCD,項目名稱:EDMarketConnector,代碼行數:23,代碼來源:plug.py

示例2: __init__

# 需要導入模塊: import Tkinter [as 別名]
# 或者: from Tkinter import Widget [as 別名]
def __init__(self, master, widgetname, kw=None):
        """Constructs a Ttk Widget with the parent master.

        STANDARD OPTIONS

            class, cursor, takefocus, style

        SCROLLABLE WIDGET OPTIONS

            xscrollcommand, yscrollcommand

        LABEL WIDGET OPTIONS

            text, textvariable, underline, image, compound, width

        WIDGET STATES

            active, disabled, focus, pressed, selected, background,
            readonly, alternate, invalid
        """
        master = setup_master(master)
        if not getattr(master, '_tile_loaded', False):
            # Load tile now, if needed
            _load_tile(master)
        Tkinter.Widget.__init__(self, master, widgetname, kw=kw) 
開發者ID:dxwu,項目名稱:BinderFilter,代碼行數:27,代碼來源:ttk.py

示例3: update

# 需要導入模塊: import Tkinter [as 別名]
# 或者: from Tkinter import Widget [as 別名]
def update(self, widget):
        assert isinstance(widget, tk.Widget) or isinstance(widget, tk.BitmapImage), widget
        if not self.current:
            return	# No need to call this for widgets created in plugin_app()
        self.register(widget)
        self._update_widget(widget)
        if isinstance(widget, tk.Frame) or isinstance(widget, ttk.Frame):
            for child in widget.winfo_children():
                self._update_widget(child)

    # Apply current theme to a single widget 
開發者ID:EDCD,項目名稱:EDMarketConnector,代碼行數:13,代碼來源:theme.py

示例4: state

# 需要導入模塊: import Tkinter [as 別名]
# 或者: from Tkinter import Widget [as 別名]
def state(self, statespec=None):
        """Modify or inquire widget state.

        Widget state is returned if statespec is None, otherwise it is
        set according to the statespec flags and then a new state spec
        is returned indicating which flags were changed. statespec is
        expected to be a sequence."""
        if statespec is not None:
            statespec = ' '.join(statespec)

        return self.tk.splitlist(str(self.tk.call(self._w, "state", statespec))) 
開發者ID:dxwu,項目名稱:BinderFilter,代碼行數:13,代碼來源:ttk.py

示例5: configure

# 需要導入模塊: import Tkinter [as 別名]
# 或者: from Tkinter import Widget [as 別名]
def configure(self, cnf=None, **kw):
        """Modify or query scale options.

        Setting a value for any of the "from", "from_" or "to" options
        generates a <<RangeChanged>> event."""
        if cnf:
            kw.update(cnf)
        Widget.configure(self, **kw)
        if any(['from' in kw, 'from_' in kw, 'to' in kw]):
            self.event_generate('<<RangeChanged>>') 
開發者ID:dxwu,項目名稱:BinderFilter,代碼行數:12,代碼來源:ttk.py

示例6: _subwidget_name

# 需要導入模塊: import Tkinter [as 別名]
# 或者: from Tkinter import Widget [as 別名]
def _subwidget_name(self,name):
        """Get a subwidget name (returns a String, not a Widget !)"""
        try:
            return self.tk.call(self._w, 'subwidget', name)
        except TclError:
            return None 
開發者ID:dxwu,項目名稱:BinderFilter,代碼行數:8,代碼來源:Tix.py

示例7: __getitem__

# 需要導入模塊: import Tkinter [as 別名]
# 或者: from Tkinter import Widget [as 別名]
def __getitem__(self,key):
        return self.tk.call(self.stylename, 'cget', '-%s'%key)


######################################################
### The Tix Widget classes - in alphabetical order ###
###################################################### 
開發者ID:dxwu,項目名稱:BinderFilter,代碼行數:9,代碼來源:Tix.py


注:本文中的Tkinter.Widget方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。