(cls)
| 191 | |
| 192 | @classmethod |
| 193 | def _createInstance(cls): |
| 194 | # 创建实例 |
| 195 | if not cls._instance: |
| 196 | cls._instance = NotificationWindow() |
| 197 | cls._instance.show() |
| 198 | NotificationIcon.init() |
| 199 | |
| 200 | @classmethod |
| 201 | def info(cls, title, message, callback=None): |