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


Python Button.width方法代码示例

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


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

示例1: __init__

# 需要导入模块: from Button import Button [as 别名]
# 或者: from Button.Button import width [as 别名]
    def __init__(self, options, ypos, buttontextsize = variables.gettextsize()/variables.height):
        # a list of strings
        self.options = options
        self.current_option = 0
        self.buttons = []
        self.maxwidth = 0

        for s in options:
            newb = Button(0, ypos, s, buttontextsize)
            self.buttons.append(newb)
            if newb.width()/variables.width > self.maxwidth:
                # devide by width because positions are multipliers of width
                self.maxwidth = newb.width()/variables.width
        
        spacing = self.maxwidth / 4
        length = len(self.buttons)
        self.length = length
        centering = (1 - length * self.maxwidth - (length-1) * spacing) / 2
        
        for i in range(self.length):
            self.buttons[i].screenwidthoverride = self.maxwidth
            self.buttons[i].x = i * (self.maxwidth + spacing) + centering

        self._freeze()
开发者ID:oflatt,项目名称:pythonRpgProject,代码行数:26,代码来源:ChoiceButtons.py


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