You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import wx
|
|
|
|
APP_TITLE = u'音乐播放器'
|
|
|
|
class MainFrame(wx.Frame):
|
|
def __init__(self):
|
|
self.width = 1920
|
|
self.height = 1080
|
|
wx.Frame.__init__(self, None, APP_TITLE)
|
|
self.SetSize(self.width, self.height)
|
|
self.SetBackgroundColour((248, 248, 255))
|