怎么在toolbar上添加按钮

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎么在toolbar上添加按钮相关的知识,希望对你有一定的参考价值。

Java Swing本身提供了现成的按钮控件JButton
创建一个新的按钮:JButton about = new JButton;
这个按钮该放到菜单区:toolBar.add(about);
要为按钮添加事件响应,需要使用about.addActionListener(this)来告诉程序监听按钮按下时的事件,ActionListener是一个程序接口。
public class KyodaiUI extends JFrame implements ActionListener ...实现ActionListener接口是为了告诉程序我要进行事件处理了。
最后我们得添加响应事件的代码:
public void actionPerformed(ActionEvent e)
if (e.getSource() == about)
参考技术A 方法如下:
1、eclipse系统的按钮可以在Windows-Show View中选择或者在toolbar上右键选择“自定义”;
2、eclipse程序的toolbar按钮,挂上VE,可以很直观的看到用法。本回答被提问者采纳

在 DetailViewController ToolBar for iPad 上添加工具栏项或按钮

【中文标题】在 DetailViewController ToolBar for iPad 上添加工具栏项或按钮【英文标题】:Adding toolbar item or button on DetailViewController ToolBar for iPad 【发布时间】:2011-11-17 02:42:43 【问题描述】:

如何将工具栏项添加到 iPad 的 DetailViewController(SplitViewController 右侧)中的工具栏

【问题讨论】:

请指导我如何在不使用 Xcode 4 更改 iPad 中的 RootViewController(左侧)的情况下以编程方式更改 DetailViewcontroller(SplitViewController 的右侧)的视图 【参考方案1】:

您可以在 detailViewController 类本身中自定义您的 detailView。

【讨论】:

以上是关于怎么在toolbar上添加按钮的主要内容,如果未能解决你的问题,请参考以下文章

Android中toolbar遮盖住其他控件该怎么解决

QtDesigner怎么添加工具栏toolBar

vb中toolbar 和activebar怎么用

jquery easyui 怎么动态控制toolbar的显示

mfc中的CMFCToolBar类怎么实现工具栏上的按钮多行显示??急!!!

在 DetailViewController ToolBar for iPad 上添加工具栏项或按钮