Computer Science, asked by kanharock095, 1 year ago

what is the use of panel in netbeans ide​

Answers

Answered by sambhav2491
2

JPanelis a Swing's lightweight container which is used to group a set of components together. JPanel is a pretty simple component which, normally, does not have a GUI (except when it is being set an opaque background or has a visual border).


sambhav2491: hope it helps
kanharock095: yes thanks
Answered by aaravshah16103
1

hether you are creating a plugin for NetBeans IDE or for another application, there is a good chance that you want the user to be able to specify settings, also known as "customizations" or "preferences", such as the location of an external file. The Options window offers a centralized location for all such settings. In NetBeans IDE, the Options window is found under the Tools menu and

Primary Panel

The NetBeans APIs give you access to the Options window in two different ways. In the first case, you can add a new main panel to the Options window. Using this approach, your module will add a new 'primary' panel to the Options window, similar to the 'General' panel or 'Editor' panel shown in the screenshot above. Your panel will, just like these panels, have a name and an image in the top of the Options window, together with its settings in the body of the panel.


kanharock095: thanks
aaravshah16103: your welcome
Similar questions