?? main.py
字號:
'''This file is part of PypMsg.PypMsg is free software: you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation, either version 3 of the License, or(at your option) any later version.PypMsg is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See theGNU General Public License for more details.You should have received a copy of the GNU General Public Licensealong with PypMsg. If not, see <http://www.gnu.org/licenses/>.'''import wximport osfrom ui.server_ui import ServerWinif __name__ == '__main__': homedir = os.path.expanduser('~') os.chdir(homedir) app = wx.App(0) serverWin = ServerWin(None, show=True) app.SetTopWindow(serverWin) app.MainLoop()
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -