本文整理汇总了Python中kivy.uix.carousel.Carousel.load_slide方法的典型用法代码示例。如果您正苦于以下问题:Python Carousel.load_slide方法的具体用法?Python Carousel.load_slide怎么用?Python Carousel.load_slide使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类kivy.uix.carousel.Carousel
的用法示例。
在下文中一共展示了Carousel.load_slide方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: MainScreen
# 需要导入模块: from kivy.uix.carousel import Carousel [as 别名]
# 或者: from kivy.uix.carousel.Carousel import load_slide [as 别名]
class MainScreen(BoxLayout):
def __init__(self, **kwargs):
super(MainScreen, self).__init__(**kwargs)
self.orientation = 'vertical'
title = TitleBar()
self.carousel = Carousel(direction='right', loop=False)
self.spacing=10
dico = Dictionary()
self.carousel.add_widget(dico)
self.m = MainMenu()
self.m.convert_button.bind(on_release=self.convert)
self.m.dictionary_button.bind(on_release=self.dictionary)
self.carousel.add_widget(self.m)
self.carousel.load_slide(self.m)
self.textEntry = TextEntry()
self.textEntry.paragraph_button.bind(on_press=self.convert_paragraph)
self.carousel.add_widget(self.textEntry)
self.result = ResultEntry()
self.result.back.bind(on_press=self.back)
self.carousel.add_widget(self.result)
self.add_widget(title)
self.add_widget(self.carousel)
def convert(self, object):
self.carousel.load_next()
def dictionary(self, object):
self.carousel.load_previous()
def back(self, object):
self.carousel.load_slide(self.m)
def convert_paragraph(self, object):
old_text = self.textEntry.paragraph.text
new_text = politically_correct.polit_changer(old_text)
self.result.paragraph.text = new_text
self.carousel.load_next()