Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当用户移动一个日历事件时,我想显示用户将放置日历事件的时间作为日历事件的工具提示。
不确定我是否理解您要执行的操作,但也许您可以使用 DragStartEvent 和 DragEndEvent 来显示使工具提示元素可见,如下所示(伪代码):
onDragStart() { tooltip.setVisible(true); } onDragEnd() { tooltip.setVisible(false); }