xwtcompile.py
来自「The major functionality added in this re」· Python 代码 · 共 14 行
PY
14 行
#!/usr/bin/env python## XWT (XML Widget Template) compiler frontend## Currently very dumb, specify the input and output files# on the command line, nothing more, nothing less.import PicoGUI, sysfrom PicoGUI import XWTParserparser = XWTParser.XWTParser()wt = parser.Parse(open(sys.argv[1]).read())open(sys.argv[2],'w').write(wt);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?