jframe添加工具栏
时间: 2023-10-08 11:06:56 浏览: 146
工具栏添加控件
4星 · 用户满意度95%
要在 JFrame 上添加工具栏,可以使用 JToolBar 类。以下是添加工具栏的基本步骤:
1. 创建一个 JToolBar 对象。
```java
JToolBar toolbar = new JToolBar();
```
2. 向工具栏添加按钮或其他组件。
```java
toolbar.add(new JButton("Button 1"));
toolbar.add(new JButton("Button 2"));
toolbar.add(new JTextField("Text Field"));
// ...
```
3. 将工具栏添加到 JFrame。
```java
frame.add(toolbar, BorderLayout.PAGE_START);
```
完整示例代码如下:
```java
import javax.swing.*;
import java.awt.*;
public class ToolbarExample {
public static void main(String[] args) {
JFrame frame = new JFrame("Toolbar Example");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// 创建工具栏
JToolBar toolbar = new JToolBar();
toolbar.add(new JButton("Button 1"));
toolbar.add(new JButton("Button 2"));
toolbar.add(new JTextField("Text Field"));
// ...
// 将工具栏添加到 JFrame
frame.add(toolbar, BorderLayout.PAGE_START);
frame.setSize(300, 200);
frame.setVisible(true);
}
}
```
运行代码,将会看到一个带有工具栏的 JFrame 窗口。
阅读全文