Top > PySimpleGUI
  • The added line is THIS COLOR.
  • The deleted line is THIS COLOR.
  • Go to PySimpleGUI.

[[Python/GUI]] > [[PySimpleGUI]]

- https://pysimplegui.readthedocs.io/en/latest/

>>
pip install pysimplegui

- https://pysimplegui.readthedocs.io/en/latest/cookbook/

*. [#ffbc9ef0]

- PySimpleGUIの基本的な使用方法
--  https://qiita.com/KatsunoriNakamura/items/376da645e52f7ef7f9ef
---   http://www.k-techlabo.org/www_python/PySimpleGUI.pdf

- Tkinterを使うのであればPySimpleGUIを使ってみたらという話
--  https://qiita.com/dario_okazaki/items/656de21cab5c81cabe59

- [https://it-for-pharma.com/pysimplegui%e3%81%a7gui%e3%82%a2%e3%83%97%e3%83%aa%e3%82%92%e4%bd%9c%e3%81%a3%e3%81%a6%e3%81%bf%e3%81%9f-%e3%81%9d%e3%81%ae2-view%e5%ae%9f%e8%a3%85 https://it-for-pharma.com/pysimpleguiでguiアプリを作ってみた-その2-view実装]

- Pythonでも簡単にGUIは作れる
--  https://qiita.com/konitech913/items/61dc715ddaad54505a29

- pythonでGUIツールを作る ~基本編~
--  https://python-minutes.blogspot.com/2016/04/wxpython.html
>
 import wx
 wxPythonのモジュールをインポートしています。
 app = wx.App()
 frame = wx.Frame(None, -1, u'タイトル', size=(200, 200))
 frame.Show()
 app.MainLoop()
>
frame = wx.Frame(None, -1, u'タイトル', size=(200, 200), style=wx.DEFAULT_FRAME_STYLE | wx.MAXIMIZE)

* 関連 [#rel]

- [[Python]]
- [[GUI]]

Reload   Diff   Front page List of pages Search Recent changes Backup Referer   Help   RSS of recent changes