ttk

    2熱度

    2回答

    在我的電腦用Win8.1,當我用下面的代碼 from tkinter import * from tkinter.ttk import * Tk().mainloop() 我只看到老看Tkinter的。任何想法如何解決它? 我試圖用不同的主題沒有結果。 出於某種原因,下面的代碼: from tkinter import * from tkinter.ttk import

    0熱度

    1回答

    我正在學習Python,我有一個關於.grid()方法的問題。 在筆者給的例子,他有*使進口像這樣: from tkinter import * from tkinter import ttk, filedialog, messagebox import base64 import json import os from bs4 import BeautifulSoup import

    0熱度

    1回答

    我有一些測試代碼,它定義了幾個窗口和函數(一個用於顯示框架,一個用於新窗口)。我有一個bug創建new_window函數,因爲它不打開指定的窗口,而是打開一個空白的窗口。我認爲這是因爲我已經在與主類有關的類中定義了窗口,並且在其中定義了框架,但是窗口不是,但是我擔心在調試方面我很遺憾。 任何幫助非常感謝! import tkinter as tk from tkinter import ttk

    1熱度

    1回答

    所以我意識到在pycharm中沒有代碼提示ttk對象選項。是否有人知道pycharm中的插件或設置將爲tkinter對象選項提供代碼提示? 如果不是你知道這樣做的IDE嗎? 感謝

    2熱度

    1回答

    我正在深入學習ttk,並且想知道如何找到任何小部件的邏輯佈局。現在只是探索和做小試驗。在下面的代碼嘗試顯示文本,但佈局細節不記錄爲checkbutton。 因此,對於我來說,如何輕鬆地爲任何小部件找到它們就成了問題。 This Ttk style guide是非常好的參考,但在佈局深度沒有幫助。 感謝你。 ttk::style element create pin vsapi EXPLORERBA

    -1熱度

    1回答

    我在tkinter/ttk中開發了一個用戶界面,它使用標準的ttk.Button小部件來使用'command'參數調用各種函數。問題是,如果用戶雙擊一個按鈕,該功能被調用兩次。這會導致各種問題。雙擊事件沒有綁定任何東西,所以有沒有辦法禁用第二次單擊?我在函數定義的開始處嘗試了time.sleep()和after(),但是我還沒有找到使它工作的方法。我是否需要手動將每個功能綁定到每個按鈕的點擊並重新

    1熱度

    1回答

    我正在嘗試顯示圖像。 from tkinter import * from tkinter import ttk root = Tk() myimage = PhotoImage(file='world.gif') ttk.Label(root, image=myimage) root.mainloop() 當我運行這個,我希望看到我的形象。但我只看到一幅純色的灰色影像。 任何幫助

    -1熱度

    1回答

    TTK版本不同的是TC不支持跨。選擇()的方法

    0熱度

    1回答

    下面是一個令我困惑的python/tkinter程序。該窗口顯示只讀的ttk.Entry和禁用的tkinter.Text。它以編程方式在輸入框中選擇一個字符,並且永不改變該選擇。但是,如果我嘗試選擇其他框(禁用的文本)中的文本,選擇將會更改。這看起來不正確。 的Python 3.5.0和OS的Tcl/Tk 18年8月5日X 當你運行程序,你可以看到 「A」 在條目高亮(上部)框。 按下「寫入數據」

    0熱度

    1回答

    [CODE] from Tkinter import * from ttk import * root = Tk() noteBook = Notebook(root) root.focus() tab1 = Frame(noteBook) tab2 = Frame(noteBook) Label(tab2, text='Test', width=15).grid(row=3,co