📄 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 + -