{"id":1516,"date":"2021-06-03T20:41:49","date_gmt":"2021-06-03T12:41:49","guid":{"rendered":"http:\/\/www.yatenglg.cn\/?p=1516"},"modified":"2022-10-18T16:36:56","modified_gmt":"2022-10-18T08:36:56","slug":"pysamplegui-%e6%96%87%e4%bb%b6%e8%8e%b7%e5%8f%96","status":"publish","type":"post","link":"http:\/\/www.yatenglg.cn\/blog\/?p=1516","title":{"rendered":"PySampleGUI \u6587\u4ef6\u83b7\u53d6"},"content":{"rendered":"\n<p>\u521b\u5efa\u4e00\u4e2a\u8f93\u5165\u6846\u548c\u6587\u4ef6\u83b7\u53d6<\/p>\n\n\n\n<p>\u53ef\u4ee5\u901a\u8fc7\u8f93\u5165\u6846\u8f93\u5165\u6587\u4ef6\u8def\u5f84\uff0c\u4e5f\u53ef\u4ee5\u901a\u8fc7Browse\u9009\u62e9\u6587\u4ef6\uff0c\u540c\u6b65\u5230\u8f93\u5165\u6846\u4e2d\u3002<\/p>\n\n\n\n<p>input\u4e0ebrowse\u914d\u5bf9\u540e\uff0cbrowse\u5185\u5bb9\u4f1a\u81ea\u52a8\u540c\u6b65\u5230input\u4e2d<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img width=\"508\" height=\"96\" src=\"http:\/\/www.yatenglg.cn\/wp-content\/uploads\/2021\/06\/gnome-shell-screenshot-ID5G40.png\" alt=\"\" class=\"wp-image-1520\" srcset=\"http:\/\/www.yatenglg.cn\/blog\/wp-content\/uploads\/2021\/06\/gnome-shell-screenshot-ID5G40.png 508w, http:\/\/www.yatenglg.cn\/blog\/wp-content\/uploads\/2021\/06\/gnome-shell-screenshot-ID5G40-300x57.png 300w\" sizes=\"(max-width: 508px) 100vw, 508px\" \/><\/figure>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism undefined-numbers lang-python\" data-lang=\"Python\"><code>import PySimpleGUI as sg\n\nlayout = [[sg.Text(&#39;File:&#39;, size=(5, 1)), sg.Input(key=&#39;-INPUT-&#39;, size=(50, 1)), sg.FileBrowse(key=&#39;-BROWSE-&#39;)],\n          [sg.Submit(), sg.Exit()]]\n\nwindow = sg.Window(&#39;&#39;, layout)\n\nwhile True:\n    event, values = window.read()\n\n    if event == &#39;Submit&#39;:\n        print(&#39;File is {}&#39;.format(values[&#39;-INPUT-&#39;]))\n        break\n    if event in [&#39;Exit&#39;, sg.WIN_CLOSED]:\n        break<\/code><\/pre><\/div>\n\n\n\n<p>\u901a\u8fc7\u9690\u85cfinput\uff0c\u5e76\u76d1\u542cinput\u4e8b\u4ef6\uff0c\u53ef\u5b9e\u73b0browse\u540e\u76f4\u63a5\u8fdb\u884c\u64cd\u4f5c\u3002<\/p>\n\n\n\n<p>browse\u64cd\u4f5c\u540e\uff0c\u9009\u62e9\u7684\u5185\u5bb9\u4f1a\u81ea\u52a8\u586b\u5199\u5230input\u4e2d\uff0c\u76d1\u542cinput\u8fdb\u884c\u64cd\u4f5c\u3002<\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism undefined-numbers lang-plane\"><code>import PySimpleGUI as sg\n\nlayout = [[sg.Text(&#39;File:&#39;, size=(5, 1)), sg.Input(key=&#39;-INPUT-&#39;, visible=False, enable_events=True, size=(50, 1)), sg.FileBrowse(key=&#39;-BROWSE-&#39;)],\n          [sg.Exit()]]\n\nwindow = sg.Window(&#39;&#39;, layout)\n\nwhile True:\n    event, values = window.read()\n\n    if event == &#39;-INPUT-&#39;:\n        print(&#39;File is {}&#39;.format(values[&#39;-INPUT-&#39;]))\n        break\n    if event in [&#39;Exit&#39;, sg.WIN_CLOSED]:\n        break<\/code><\/pre><\/div>\n","protected":false},"excerpt":{"rendered":"<p>\u521b\u5efa\u4e00\u4e2a\u8f93\u5165\u6846\u548c\u6587\u4ef6\u83b7\u53d6 \u53ef\u4ee5\u901a\u8fc7\u8f93\u5165\u6846\u8f93\u5165\u6587\u4ef6\u8def\u5f84\uff0c\u4e5f\u53ef\u4ee5\u901a\u8fc7Browse\u9009\u62e9\u6587\u4ef6\uff0c\u540c\u6b65\u5230\u8f93\u5165\u6846\u4e2d\u3002 inp&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":[],"categories":[20],"tags":[],"_links":{"self":[{"href":"http:\/\/www.yatenglg.cn\/blog\/index.php?rest_route=\/wp\/v2\/posts\/1516"}],"collection":[{"href":"http:\/\/www.yatenglg.cn\/blog\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/www.yatenglg.cn\/blog\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/www.yatenglg.cn\/blog\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/www.yatenglg.cn\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1516"}],"version-history":[{"count":22,"href":"http:\/\/www.yatenglg.cn\/blog\/index.php?rest_route=\/wp\/v2\/posts\/1516\/revisions"}],"predecessor-version":[{"id":1545,"href":"http:\/\/www.yatenglg.cn\/blog\/index.php?rest_route=\/wp\/v2\/posts\/1516\/revisions\/1545"}],"wp:attachment":[{"href":"http:\/\/www.yatenglg.cn\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1516"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/www.yatenglg.cn\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1516"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/www.yatenglg.cn\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1516"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}