attrmixins.py

来自「boa-constructor著名的开源开发工具。还要说什么?好像获了好多奖」· Python 代码 · 共 10 行

PY
10
字号
""" Module which contain an example attribute mixin class """

class Test_AttrMixin:
    """ The attributes defined in this class will be picked up at design-time
        when mixed with a frame like class """
    def __init__(self):
        self.name1 = 1
        self.frameTitle = 'Attr'
        self.buttonLabel = 'Mixin'

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?