- 追加された行はこの色です。
- 削除された行はこの色です。
- wxPython へ行く。
[[Python/GUI]] > [[wxPython]]
- https://www.wxpython.org/
- [[Python/macOS]]
- [[wxPython/Component]]
- [[wxPython/Layout]]
- [[wxPython/Event]]
- [[wxPython/Graphics]]
- [[wxPython/Appearance]] (DarkMode)
- https://www.python-izm.com/gui/wxpython/
* GUIビルダー [#q77bc912]
- [[wxGlade]]
- [[wxFormBuilder]]
* ファイルD&D [#h5cbf3a2]
- pythonでGUIツールを作る ~ ドラッグ&ドロップ ~
-- https://python-minutes.blogspot.com/2017/01/pythongui_89.html
* スレッド [#y4f7ad12]
- wxPythonでスレッドを使ってみる
-- https://bty.sakura.ne.jp/wp/archives/626
* Close [#n3b2f5dd]
- あれげメモ:wxPythonプログラミング事始め-アプリケーションの終了
-- https://srad.jp/~tuneo/journal/352723/
* その他 [#etc]
- wxPython: Using wx.Timers
-- https://www.blog.pythonlibrary.org/2009/08/25/wxpython-using-wx-timers/
self.timer = wx.Timer(self)
self.Bind(wx.EVT_TIMER, self.update, self.timer)
self.timer.Start(1000)
def update(self, event):
...