本文整理汇总了Python中cloudinstall.ui.utils.Color.frame_header方法的典型用法代码示例。如果您正苦于以下问题:Python Color.frame_header方法的具体用法?Python Color.frame_header怎么用?Python Color.frame_header使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cloudinstall.ui.utils.Color
的用法示例。
在下文中一共展示了Color.frame_header方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: from cloudinstall.ui.utils import Color [as 别名]
# 或者: from cloudinstall.ui.utils.Color import frame_header [as 别名]
def __init__(self):
self.text = Text(self.TITLE_TEXT)
self.widget = Color.frame_header(self.text)
w = [
Color.frame_header(self.widget),
Color.frame_subheader(Text(
'(Q)uit', align='center'))
]
super().__init__(Pile(w))
示例2: __init__
# 需要导入模块: from cloudinstall.ui.utils import Color [as 别名]
# 或者: from cloudinstall.ui.utils.Color import frame_header [as 别名]
def __init__(self):
w = []
w.append(Color.frame_header(
Text("Ubuntu Openstack Installer - Software Installation")))
w.append(Color.frame_subheader(Text(
'(Q)uit', align='center')))
w = Pile(w)
super().__init__(w)
示例3: __init__
# 需要导入模块: from cloudinstall.ui.utils import Color [as 别名]
# 或者: from cloudinstall.ui.utils.Color import frame_header [as 别名]
def __init__(self):
self.text = Text(self.TITLE_TEXT)
self.widget = Color.frame_header(self.text)
self.pile = Pile([self.widget, Text("")])
self.set_show_add_units_hotkey(False)
super().__init__(self.pile)