在 NetBeans 中检测设计时间
在 NetBeans 中使用 Swing 图形编辑器时,自定义组件是否可以检测到它是设计时间?例如,
public CustomComponent() {
initComponents();
if (!isDesignTime()) {
someIcon = IconFactory.loadIcon("icons/SomeIcon.png");
}
}
基本上我正在寻找类似.net的组件.设计模式
When using the Swing graphical editor in NetBeans is it possible for a custom component to detect that it's design time? E.g.
public CustomComponent() {
initComponents();
if (!isDesignTime()) {
someIcon = IconFactory.loadIcon("icons/SomeIcon.png");
}
}
Basically I'm after something like .net's Component.DesignMode
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试:
Try: