如何访问JPanel?

发布于 2024-12-22 06:55:07 字数 610 浏览 0 评论 0原文

我试图在 SingleFrameApplication 的 JPanel 中绘制一个简单的指针,0..360 度。 我使用的是 NetBeans IDE 6.9.1,因为它有一个很好的 Swing 容器、控件、菜单等调色板。 我希望 DrawPointer 接口是这样的,因为会有多个 [指针]:

DrawPointer(JPanel panel, double degrees);

但是 JPanel 被 IDE 生成的代码声明为私有,如下所示:

public class MyView extends FrameView {
    public MyView(SingleFrameApplication app) {
        super(app);
        initComponents();
        ...
    private void initComponents() {
        ...
        private javax.swing.JPanel jPanelA;
        ...

How do I access the JPanel to draw in it if it is private ?

I am trying to draw a simple pointer, 0..360 degrees, in a JPanel on a SingleFrameApplication.
I am using NetBeans IDE 6.9.1 since it has a nice Palette of Swing Containers, Controls, Menus, etc.
I'd like the DrawPointer interface to be something like this since there will be more than one [pointer]:

DrawPointer(JPanel panel, double degrees);

but the JPanel is declared private by IDE generated code like this:

public class MyView extends FrameView {
    public MyView(SingleFrameApplication app) {
        super(app);
        initComponents();
        ...
    private void initComponents() {
        ...
        private javax.swing.JPanel jPanelA;
        ...

How do I access the JPanel to draw in it if it is private?

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

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

发布评论

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

评论(2

葬心 2024-12-29 06:55:07

如果您唯一关心的是 private ,您可以在 netbeans 中更改它,

右键单击该组件>自定义代码>在底部您可以选择更改声明代码。

If that being private is your sole concern, you can change that in netbeans ,

right click the component > customize code > at the bottom you have the option to change the declaration code.

风和你 2024-12-29 06:55:07

您向 MyView 类添加一个返回 jPanelA 的方法(就此而言,可能已经有这样的方法,您检查过自动生成的代码吗?)

you add a method to your MyView class which returns jPanelA (for that matter there could already be a method like that, have you checked the autogenerated code?)

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