Home>Article>Java> What does panel mean in java?

What does panel mean in java?

little bottle
little bottle Original
2019-05-20 15:03:12 13545browse

There are Panel, Pane and JPanel in java. Do you know what they mean respectively? Let’s find out with the editor below.

What does panel mean in java?

Panel is a fully functional and independent sub-pane.

Panel is a panel, a basic component that is rarely used directly, or is inherited and overridden, or used to organize other components.

Both panel and Jpanel are middle-layer containers that can display text, images, and draw graphics. Their main function is to organize other components in the GUI.

If you look at the naming in Swing, JPanel is a basic component; and those with complete functions/performing their duties are called Pane, such as JTabbedPane and JSplitPane.

Related learning recommendations:java basic tutorial

The above is the detailed content of What does panel mean in java?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:What does int mean in java Next article:What does int mean in java