如何让我的 Netbeans 拖放小部件知道它是在 Netbeans 设计视图窗口还是正在运行的应用程序中呈现?

发布于 2024-07-10 14:29:58 字数 103 浏览 6 评论 0原文

如何让我的 Netbeans 拖放小部件知道它是在 Netbeans 设计视图窗口还是正在运行的应用程序中呈现?

我正在尝试进行一些自定义渲染。 我认为这与根容器有关。

How do I get my netbeans drag and drop widget to know whether it is rendering inside the netbeans design view window or the running application?

I'm trying to do some custom rendering. I think it has to do with the root container.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

新雨望断虹 2024-07-17 14:29:58

这是另一种方法:

Component c = javax.swing.SwingUtilities.getRoot(this);
String className = c.getClass().getCanonicalName();
if (!"org.netbeans.core.windows.view.ui.MainWindow"
    .equalsIgnoreCase(className)) {

虽然我认为该

 Beans.isDesignTime() 

方法更好

This is another method:

Component c = javax.swing.SwingUtilities.getRoot(this);
String className = c.getClass().getCanonicalName();
if (!"org.netbeans.core.windows.view.ui.MainWindow"
    .equalsIgnoreCase(className)) {

Although I think the

 Beans.isDesignTime() 

method is better

柒七 2024-07-17 14:29:58

进行测试

Beans.isDesignTime()

使用以下示例

package test;

import java.awt.Graphics;
import java.beans.Beans;

import javax.swing.JLabel;

public class TestLabel extends JLabel {
private static final long serialVersionUID = -2438507032083091628L;

public TestLabel() {
    super();
}

public void paint(Graphics g) {
    super.paint(g);

    if (Beans.isDesignTime()) 
        this.setText("Design Time");
    else
        this.setText("Production runtime");
}
}

它有效 - 这非常令人难以置信。

Testing the

Beans.isDesignTime()

with the following example

package test;

import java.awt.Graphics;
import java.beans.Beans;

import javax.swing.JLabel;

public class TestLabel extends JLabel {
private static final long serialVersionUID = -2438507032083091628L;

public TestLabel() {
    super();
}

public void paint(Graphics g) {
    super.paint(g);

    if (Beans.isDesignTime()) 
        this.setText("Design Time");
    else
        this.setText("Production runtime");
}
}

It works - that's quite incredible.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文