如何给一个ToolBar添加按钮
2个回答
展开全部
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) {
创建一个新的按钮: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) {
展开全部
[cpp]viewplaincopy//首先需要创建一个NSMutableArrayNSMutableArray*buttons=[[NSMutableArrayalloc]initWithCapacity:3];[buttonsautorelease];//创建一个UIBarButtonItem系统刷新按钮并且加入到Array中UIBarButtonItem*freshButton=[[UIBarButtonItemalloc]initWithBarButtonSystemItem:UIBarButtonSystemItemRefreshtarget:selfaction:@selector(OnrefreshMap:)];[buttonsaddObject:freshButton];[freshButtonrelease];//创建一个空格,加入到array,用来将下面加入的按钮按照右边对齐UIBarButtonItem*SpaceButton=[[UIBarButtonItemalloc]initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpacetarget:nilaction:nil];[buttonsaddObject:SpaceButton];[SpaceButtonrelease];//创建一个系统搜索按钮,加入到array,放到右边UIBarButtonItem*searchSelfButton=[[UIBarButtonItemalloc]initWithBarButtonSystemItem:UIBarButtonSystemItemSearchtarget:selfaction:@selector(OnFindSelf:)];[buttonsaddObject:searchSelfButton];[searchSelfButtonrelease];//最后,将array设置给toolbar[toolbarsetItems:buttonsanimated:YES];[toolbarsizeToFit];
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询