本文整理汇总了Python中pyjamas.ui.VerticalPanel.VerticalPanel.setCellHeight方法的典型用法代码示例。如果您正苦于以下问题:Python VerticalPanel.setCellHeight方法的具体用法?Python VerticalPanel.setCellHeight怎么用?Python VerticalPanel.setCellHeight使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pyjamas.ui.VerticalPanel.VerticalPanel
的用法示例。
在下文中一共展示了VerticalPanel.setCellHeight方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: from pyjamas.ui.VerticalPanel import VerticalPanel [as 别名]
# 或者: from pyjamas.ui.VerticalPanel.VerticalPanel import setCellHeight [as 别名]
def __init__(self):
SimplePanel.__init__(self)
panel = VerticalPanel()
panel.setBorderWidth(1)
panel.setHorizontalAlignment(HasAlignment.ALIGN_CENTER)
panel.setVerticalAlignment(HasAlignment.ALIGN_MIDDLE)
part1 = Label("Part 1")
part2 = Label("Part 2")
part3 = Label("Part 3")
part4 = Label("Part 4")
panel.add(part1)
panel.add(part2)
panel.add(part3)
panel.add(part4)
panel.setCellHeight(part1, "10%")
panel.setCellHeight(part2, "70%")
panel.setCellHeight(part3, "10%")
panel.setCellHeight(part4, "10%")
panel.setCellHorizontalAlignment(part3, HasAlignment.ALIGN_RIGHT)
panel.setWidth("50%")
panel.setHeight("300px")
self.add(panel)
示例2: __init__
# 需要导入模块: from pyjamas.ui.VerticalPanel import VerticalPanel [as 别名]
# 或者: from pyjamas.ui.VerticalPanel.VerticalPanel import setCellHeight [as 别名]
def __init__(self, tabBar=None, **kwargs):
self.children = [] # TODO: can self.children be used instead?
self.tab_names = {}
self.deck = kwargs.pop('Deck', None)
floatingtab = kwargs.pop('FloatingTab', False)
if self.deck is None:
self.deck = DeckPanel(StyleName="gwt-TabPanelBottom")
if tabBar is None:
self.tabBar = TabBar()
else:
self.tabBar = tabBar
self.tabListeners = []
# this is awkward: VerticalPanel is the composite,
# so we get the element here, and pass it in to VerticalPanel.
element = kwargs.pop('Element', None)
panel = VerticalPanel(Element=element)
if not floatingtab:
panel.add(self.tabBar)
if self.deck.getParent() is None:
panel.add(self.deck)
panel.setCellHeight(self.deck, "100%")
self.tabBar.setWidth("100%")
self.tabBar.addTabListener(self)
kwargs['StyleName'] = kwargs.get('StyleName', "gwt-TabPanel")
PanelBase.__init__(self)
Composite.__init__(self, panel, **kwargs)
示例3: __init__
# 需要导入模块: from pyjamas.ui.VerticalPanel import VerticalPanel [as 别名]
# 或者: from pyjamas.ui.VerticalPanel.VerticalPanel import setCellHeight [as 别名]
def __init__(self):
SimplePanel.__init__(self)
panel = VerticalPanel(BorderWidth=1,
HorizontalAlignment=HasAlignment.ALIGN_CENTER,
VerticalAlignment=HasAlignment.ALIGN_MIDDLE,
Width="50%",
Height="300px")
part1 = Label("Part 1")
part2 = Label("Part 2")
part3 = Label("Part 3")
part4 = Label("Part 4")
panel.add(part1)
panel.add(part2)
panel.add(part3)
panel.add(part4)
panel.setCellHeight(part1, "10%")
panel.setCellHeight(part2, "70%")
panel.setCellHeight(part3, "10%")
panel.setCellHeight(part4, "10%")
panel.setCellHorizontalAlignment(part3, HasAlignment.ALIGN_RIGHT)
self.add(panel)