本文整理汇总了Python中efl.elementary.button.Button.data["ctxpopup"]方法的典型用法代码示例。如果您正苦于以下问题:Python Button.data["ctxpopup"]方法的具体用法?Python Button.data["ctxpopup"]怎么用?Python Button.data["ctxpopup"]使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类efl.elementary.button.Button
的用法示例。
在下文中一共展示了Button.data["ctxpopup"]方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: cb_item6
# 需要导入模块: from efl.elementary.button import Button [as 别名]
# 或者: from efl.elementary.button.Button import data["ctxpopup"] [as 别名]
def cb_item6(li, item):
box = Box(li, size_hint_min=(200, 150))
sc = Scroller(li, bounce=(False, True), size_hint_align=FILL_BOTH,
size_hint_weight=EXPAND_BOTH)
sc.show()
bt = Button(li, text="Ctxpop will be on the top of layer",
size_hint_min=(190, 140))
bt.callback_clicked_add(cb_btn)
sc.content = bt
box.pack_end(sc)
cp = Ctxpopup(li, content=box)
cp.callback_dismissed_add(cb_dismissed)
(x, y) = li.evas.pointer_canvas_xy_get()
cp.move(x, y)
cp.show()
bt.data["ctxpopup"] = cp