当前位置: 首页>>代码示例>>Python>>正文


Python properties.ObjectProperty方法代码示例

本文整理汇总了Python中kivy.properties.ObjectProperty方法的典型用法代码示例。如果您正苦于以下问题:Python properties.ObjectProperty方法的具体用法?Python properties.ObjectProperty怎么用?Python properties.ObjectProperty使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在kivy.properties的用法示例。


在下文中一共展示了properties.ObjectProperty方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: __init__

# 需要导入模块: from kivy import properties [as 别名]
# 或者: from kivy.properties import ObjectProperty [as 别名]
def __init__(self, **kwargs):
		super(CaltracApp, self).__init__(**kwargs)
		self.sm = ScreenManager()
		self.inp = []
		self.theme_cls = ThemeManager()
		self.theme_cls.theme_style = 'Dark'
		self.theme_cls.primary_palette = 'Green'
		self.theme_cls.accent_palette = 'Pink'
		self.nav_drawer = ObjectProperty() 
开发者ID:shiburizu,项目名称:caltrac,代码行数:11,代码来源:uiObj.py

示例2: __init__

# 需要导入模块: from kivy import properties [as 别名]
# 或者: from kivy.properties import ObjectProperty [as 别名]
def __init__(self, db=DB, conf=CONF, **shnargs):
            super(KivySearchBox, self).__init__(**shnargs)
            #Widget.__init__(self, **shnargs)
            
            self.index=DriveIndex(db, conf)
            self.Plat=Platform()
            self.start= self.Plat.start_func()
            
            self.query=''
            #self.ids.result_view.data=[{'text': 'oh boy'}]
            #self.data=ObjectProperty(None)
            
            self._keyboard=window.Window.request_keyboard(self._other_kb_function, self)
            self._keyboard.bind(on_key_down=self._keyboard_events)
            
            separator='*'.encode(ENC)
            
            if not self.index.findex:  # change to a FileIndex api call (_findex)
                self.ids.result_view.data.append({'text': 'No cache database found. ' + 'Hit F5 to generate database'})
            else:
                self.ids.result_view.data.append({'text': 'Type to search.   [F5 - Refresh Database]'})
            
            #a=WindowBase()
            #WindowBase.maximize(a)
            #window.Window.maximized=True 
开发者ID:h5rdly,项目名称:Jiffy,代码行数:27,代码来源:Jiffy.py


注:本文中的kivy.properties.ObjectProperty方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。