python wxPython中のスケルトン

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python wxPython中のスケルトン相关的知识,希望对你有一定的参考价值。

#coding: utf-8
import wx

class MyApp(wx.App):
    def OnInit(self):
        self.frame = MyFrame(None, title="The Main Frame")
        self.SetTopWindow(self.frame)
        self.frame.Show()
        return True

class MyFrame(wx.Frame):
    def __init__(self, parent, id=wx.ID_ANY, title="",
                 pos=wx.DefaultPosition, size=wx.DefaultSize,
                 style=wx.DEFAULT_FRAME_STYLE, name="MyFrame"):
        super(MyFrame, self).__init__(parent, id, title, pos, size, style, name)

        self.panel = wx.Panel(self)

if __name__ == "__main__":
    app = MyApp(False)
    app.MainLoop()

以上是关于python wxPython中のスケルトン的主要内容,如果未能解决你的问题,请参考以下文章

Apex スケジューラを使用したジョブのスケジュール

python wxPython中のコントロール阶层

python CSVをJSONに変换するごく简単なPython中のスクリプト。简単だけど変换の作业がある度に调べる気がするのでメモ。

python Python中の练习

python 蟒蛇のデフォルトファイル

python 指定フレームでのスペクトルとメルケプストラムを描画