gpt4 book ai didi

java - 将相同的小部件添加到两个面板会导致问题

转载 作者:行者123 更新时间:2023-12-01 22:17:46 25 4
gpt4 key购买 nike

我创建了两个 VerticalPanel(mainVP,subVP) 和一个 TextBox(box)。TextBox(box) 被添加到 mainVP 以及 subVP 但我仅将 mainVP 添加到 RootPanel 此处如果我启动我的应用程序,甚至什么都看不到虽然我已将 TextBox(box) 添加到 VerticalPanel(mainVP) 中,并将其添加到主 Rootpanel 中。

 VerticalPanel mainVP=new VerticalPanel();
VerticalPanel subVP=new VerticalPanel();
TextBox box=new TextBox();

mainVP.add(box); //Textbox added to VerticalPanel
subVP.add(box);

RootPanel.get().add(mainVP);//mainVP contains TextBox

有人可以解释一下上面的代码在内部是如何工作的吗?

最佳答案

您的面板 subVP 未添加到任何内容,当 box 添加到 subVP 时,它会从 中删除mainVP 。小部件一次只能出现在一处。

--

(为发布的评论添加更多详细信息)

这是小部件如何工作的基本假设的一部分 - 它不是一个可以放在页面上多个位置的“标记”,它代表一个或多个 DOM 元素,并将它们包装起来以便于更容易使用和再利用。每个小部件都会公开一些您可以监听的事件处理程序,以及更改小部件外观的方法。

想象一下,如果页面上有两个按钮,并且您需要它们执行相同的操作。查看页面时,显然有两个按钮,虽然它们看起来相同并导致相同的操作,但它们不是同一件事。

考虑按钮在内部如何工作 - 假设它有一个检查来查看鼠标是否悬停,如果是,则显示工具提示,或更改颜色。如果同一个小部件在两个地方呈现,那么现在两个地方都会得到此更改。

从 API 方面来看:Widget 有一个方法 getParent(),它返回父 widget。如果您一次可以将一个小部件添加到多个位置,则 getParent() 要么无法实现,要么需要返回一个列表。

Panel 同样具有 indexOf,但如果您可以将一个小部件添加到多个父级,那么您也可以将同一个小部件多次添加到同一个父级 - 会发生什么indexOf 返回?

最后,实现这一目标。来自 Panel.add 的 Javadoc:

/**
* Adds a child widget.
*
* <p>
* <b>How to Override this Method</b>
* </p>
* <p>
* There are several important things that must take place in the correct
* order to properly add or insert a Widget to a Panel. Not all of these steps
* will be relevant to every Panel, but all of the steps must be considered.
* <ol>
* <li><b>Validate:</b> Perform any sanity checks to ensure the Panel can
* accept a new Widget. Examples: checking for a valid index on insertion;
* checking that the Panel is not full if there is a max capacity.</li>
* <li><b>Adjust for Reinsertion:</b> Some Panels need to handle the case
* where the Widget is already a child of this Panel. Example: when performing
* a reinsert, the index might need to be adjusted to account for the Widget's
* removal. See {@link ComplexPanel#adjustIndex(Widget, int)}.</li>
* <li><b>Detach Child:</b> Remove the Widget from its existing parent, if
* any. Most Panels will simply call {@link Widget#removeFromParent()} on the
* Widget.</li>
* <li><b>Logical Attach:</b> Any state variables of the Panel should be
* updated to reflect the addition of the new Widget. Example: the Widget is
* added to the Panel's {@link WidgetCollection} at the appropriate index.</li>
* <li><b>Physical Attach:</b> The Widget's Element must be physically
* attached to the Panel's Element, either directly or indirectly.</li>
* <li><b>Adopt:</b> Call {@link #adopt(Widget)} to finalize the add as the
* very last step.</li>
* </ol>
* </p>
*
* @param child the widget to be added
* @throws UnsupportedOperationException if this method is not supported (most
* often this means that a specific overload must be called)
* @see HasWidgets#add(Widget)
*/
public void add(Widget child)

最后,GWT 中大多数面板使用的默认实现基本上都是如此 (ComplexPanel.add):

// Detach new child.
child.removeFromParent();

// Logical attach.
getChildren().add(child);

// Physical attach.
DOM.appendChild(container, child.getElement());

// Adopt.
adopt(child);

还有其他实现,但它们大多归结为这一点,与Panel中概述的指南保持一致。

关于java - 将相同的小部件添加到两个面板会导致问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30642325/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com