{"id":1914,"date":"2023-11-21T09:34:26","date_gmt":"2023-11-21T01:34:26","guid":{"rendered":"http:\/\/zhang.mba\/?p=1914"},"modified":"2023-11-21T09:41:18","modified_gmt":"2023-11-21T01:41:18","slug":"python-ttk-zhi-zuo-biao-ge","status":"publish","type":"post","link":"https:\/\/zhang.mba\/index.php\/2023\/11\/21\/09\/34\/26\/1914\/python-ttk-zhi-zuo-biao-ge\/python\/zhangzhiqi\/","title":{"rendered":"python ttk\u5236\u4f5c\u8868\u683c"},"content":{"rendered":"<p>\u5728Python\u4e2d\uff0c\u4f7f\u7528Tkinter\u5e93\u7684ttk\u6a21\u5757\u53ef\u4ee5\u8f7b\u677e\u5730\u521b\u5efa\u8868\u683c\u3002\u4e0b\u9762\u662f\u4e00\u4e2a\u7b80\u5355\u7684\u793a\u4f8b\uff0c\u6f14\u793a\u5982\u4f55\u4f7f\u7528ttk\u6a21\u5757\u521b\u5efa\u4e00\u4e2a\u8868\u683c\uff1a<\/p>\n<pre class=\"line-numbers\"><code class=\"language-python\">import tkinter as tk\nfrom tkinter import ttk\n\n# \u521b\u5efa\u4e3b\u7a97\u53e3\nroot = tk.Tk()\n\n# \u521b\u5efa\u8868\u683c\ntable = ttk.Frame(root)\ntable.pack(side=tk.TOP, fill=tk.BOTH, expand=True)\n\n# \u8bbe\u7f6e\u8868\u683c\u5217\u6570\u548c\u884c\u6570\nnum_columns = 3\nnum_rows = 4\n# \u8868\u683c\u8981\u5c55\u793a\u7684\u6570\u636e\ndata = [\n    [&quot;\u59d3\u540d&quot;, &quot;\u5e74\u9f84&quot;, &quot;\u7231\u597d&quot;],\n    [&quot;\u5f20\u4e09&quot;, &quot;25&quot;, &quot;\u8bfb\u4e66&quot;],\n    [&quot;\u674e\u56db&quot;, &quot;21&quot;, &quot;\u6253\u7403&quot;],\n    [&quot;\u738b\u9ebb\u5b50&quot;, &quot;28&quot;, &quot;\u7f8e\u5973&quot;]\n]\n\n# \u521b\u5efa\u8868\u683c\u5355\u5143\u683c\nfor row in range(num_rows):\n    for col in range(num_columns):\n        print(row, col)\n        cell = ttk.Label(table, text=&quot;{}&quot;.format(data[row][col]))\n        cell.grid(row=row, column=col, padx=5, pady=5)\n\n# \u8fd0\u884c\u4e3b\u5faa\u73af\nroot.mainloop()\n<\/code><\/pre>\n<p><div class='fancybox-wrapper lazyload-container-unload' data-fancybox='post-images' href='https:\/\/mmbiz.qpic.cn\/mmbiz_png\/Nic0ruuIaskyGNh0zyeeNTEbUANAp6tpws2iaC0IVBZP8INEgZ3sn1UZlwYbRbMKTiatpz83IaBHgDZcqULRrAFYQ\/640?wx_fmt=png&amp;wxfrom=5&amp;wx_lazy=1&amp;wx_co=1'><img class=\"lazyload lazyload-style-2\" src=\"data:image\/svg+xml;base64,PCEtLUFyZ29uTG9hZGluZy0tPgo8c3ZnIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgc3Ryb2tlPSIjZmZmZmZmMDAiPjxnPjwvZz4KPC9zdmc+\"  data-original=\"https:\/\/mmbiz.qpic.cn\/mmbiz_png\/Nic0ruuIaskyGNh0zyeeNTEbUANAp6tpws2iaC0IVBZP8INEgZ3sn1UZlwYbRbMKTiatpz83IaBHgDZcqULRrAFYQ\/640?wx_fmt=png&amp;wxfrom=5&amp;wx_lazy=1&amp;wx_co=1\" src=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB\/AAffA0nNPuCLAAAAAElFTkSuQmCC\" alt=\"\u56fe\u7247\" \/><\/div><\/p>\n<p>\u5728\u8fd9\u4e2a\u793a\u4f8b\u4e2d\uff0c\u6211\u4eec\u9996\u5148\u521b\u5efa\u4e00\u4e2a\u4e3b\u7a97\u53e3\uff0c\u7136\u540e\u4f7f\u7528ttk\u6a21\u5757\u521b\u5efa\u4e00\u4e2a\u8868\u683c\u3002\u6211\u4eec\u8bbe\u7f6e\u4e86\u8868\u683c\u7684\u5217\u6570\u548c\u884c\u6570\uff0c\u5e76\u4f7f\u7528\u4e00\u4e2a\u5d4c\u5957\u7684\u5faa\u73af\u6765\u521b\u5efa\u6bcf\u4e2a\u5355\u5143\u683c\u3002\u6bcf\u4e2a\u5355\u5143\u683c\u90fd\u662f\u4e00\u4e2attk.Label\u5bf9\u8c61\uff0c\u6211\u4eec\u4f7f\u7528grid()\u65b9\u6cd5\u5c06\u5176\u653e\u7f6e\u5728\u8868\u683c\u4e2d\u7684\u7279\u5b9a\u4f4d\u7f6e\u3002\u3002\u6700\u540e\uff0c\u6211\u4eec\u8fd0\u884c\u4e3b\u5faa\u73af\u4ee5\u663e\u793a\u7a97\u53e3\u3002<\/p>\n<p>\u8fd9\u4e2a\u793a\u4f8b\u53ea\u662f\u4e00\u4e2a\u7b80\u5355\u7684\u4f8b\u5b50\uff0c\u60a8\u53ef\u4ee5\u6839\u636e\u9700\u8981\u8fdb\u884c\u4fee\u6539\u548c\u6269\u5c55\u3002\u4f7f\u7528ttk\u6a21\u5757\u53ef\u4ee5\u8f7b\u677e\u5730\u521b\u5efa\u5404\u79cd\u590d\u6742\u7684\u8868\u683c\uff0c\u4ece\u800c\u4e3a\u60a8\u7684GUI\u5e94\u7528\u7a0b\u5e8f\u589e\u6dfb\u66f4\u591a\u7684\u529f\u80fd\u548c\u53ef\u89c6\u5316\u6548\u679c\u3002<\/p>\n<p>\u6765\u6e90&#8212;-A\u900d\u9065\u4e4b\u8def<\/p>\n<!--CusAds0-->\n<div style=\"font-size: 0px; height: 0px; line-height: 0px; margin: 0; padding: 0; clear: both;\"><\/div>","protected":false},"excerpt":{"rendered":"<p>\u5728Python\u4e2d\uff0c\u4f7f\u7528Tkinter\u5e93\u7684ttk\u6a21\u5757\u53ef\u4ee5\u8f7b\u677e\u5730\u521b\u5efa\u8868\u683c\u3002\u4e0b\u9762\u662f\u4e00\u4e2a\u7b80\u5355\u7684\u793a\u4f8b\uff0c\u6f14\u793a\u5982\u4f55\u4f7f\u7528ttk\u6a21\u5757\u521b\u5efa\u4e00\u4e2a\u8868\u683c\uff1a<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_bbp_topic_count":0,"_bbp_reply_count":0,"_bbp_total_topic_count":0,"_bbp_total_reply_count":0,"_bbp_voice_count":0,"_bbp_anonymous_reply_count":0,"_bbp_topic_count_hidden":0,"_bbp_reply_count_hidden":0,"_bbp_forum_subforum_count":0},"categories":[12],"tags":[54],"_links":{"self":[{"href":"https:\/\/zhang.mba\/index.php\/wp-json\/wp\/v2\/posts\/1914"}],"collection":[{"href":"https:\/\/zhang.mba\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/zhang.mba\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/zhang.mba\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/zhang.mba\/index.php\/wp-json\/wp\/v2\/comments?post=1914"}],"version-history":[{"count":0,"href":"https:\/\/zhang.mba\/index.php\/wp-json\/wp\/v2\/posts\/1914\/revisions"}],"wp:attachment":[{"href":"https:\/\/zhang.mba\/index.php\/wp-json\/wp\/v2\/media?parent=1914"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zhang.mba\/index.php\/wp-json\/wp\/v2\/categories?post=1914"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zhang.mba\/index.php\/wp-json\/wp\/v2\/tags?post=1914"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}