?? unicode.py
字號:
# Demonstrates Unicode support in PicoGUIimport PicoGUIapp = PicoGUI.Application('Unicode Test')w = app.addWidget('Label')w.side = 'all'w.text = u"Hello\u00A9\n\nUnicode\u2260crufty".encode("utf-8") # Actual unicode text, encoded in UTF-8w.font = ':0:encoding unicode' # Try to get a font with unicode charactersapp.run()
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -