快速业务通道

用Java编写的记事本程序 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-20
te_actionAdapter implements java.awt.event.ActionListener{ Jsb adaptee; Pop_paste_actionAdapter(Jsb adaptee){ this.adaptee=adaptee; } public void actionPerformed(ActionEvent e){ adaptee.pop_paste_actionPerformed(e); } } class Pop_delete_actionAdapter implements java.awt.event.ActionListener{ Jsb adaptee; Pop_delete_actionAdapter(Jsb adaptee){ this.adaptee=adaptee; } public void actionPerformed(ActionEvent e){ adaptee.pop_delete_actionPerformed(e); } } /******************* Event class end **********************************/ /************************************************************* * title: DlgText.java * author: jeason * date: 2004-12-21 **************************************************************/ package jeason; import java.awt.*; import java.awt.event.*; import javax.swing.*; public class Dlgtext extends JDialog{ private boolean check=false; JLabel text=new JLabel( ); JButton btnOk=new JButton( ); JButton btnNo=new JButton( ); FlowLayout flowLayout1=new FlowLayout(); Dlgtext(){ this(null,"",false); } Dlgtext(Frame frame, String title, boolean modal){ super(frame,title,modal); text.setText(" 你要保存吗? "); text.setSize(200,60); this.setSize(200,80); this.setModal(true); btnOk.setText("确定(Y)"); btnOk.setMnemonic(´Y´); btnOk.setSize(100,20); btnOk.addActionListener(new btnOk_actionAdapter(this)); btnNo.setText("取消(N)"); btnNo.setMnemonic(´N´); btnNo.setSize(100,20); btnNo.addActionListener(new btnNo_actionAdapter(this)); this.getContentPane().setLayout(flowLayout1); this.getContentPane().add(text,flowLayout1); this.getContentPane().add(btnOk,flowLayout1); this.getContentPane().add(btnNo,flowLayout1); } void btnOk_actionPerformed(ActionEvent e){ this.check=true; this.dispose(); this.hide(); } void btnNo_actionPerformed(ActionEvent e){ this.check=false; this.dispose(); this.hide(); } public boolean getCheck(){ return this.check; } } class btnOk_actionAdapter implements java.awt.event.ActionListener{ Dlgtext adaptee; btnOk_actionAdapter(Dlgtext adaptee){ this.adaptee=adaptee; } public void actionPerformed(ActionEvent e){ adaptee.btnOk_actionPerformed(e); } } class btnNo_actionAdapter implements java.awt.event.ActionListener{ Dlgtext adaptee; btnNo_actionAdapter(Dlgtext adaptee){ this.adaptee=adaptee; } public void actionPerformed(ActionEvent e){ adaptee.btnNo_actionPerformed(e); } } /****************************************************** *----------------------------------------------------- * FindDlg.java * jeason * 04-12-23 2:19 *----------------------------------------------------- *****************************************************/ package jeason; import java.awt.*; import java.awt.event.*; import javax.swing.*; public class FindDlg extends JDialog{ private String findstr; private boolean flag=true; JLabel findText=new JLabel("查找内容"); JTextField strText=new JTextField(" "); JButton btnNext=new JButton( ); JButton btnUp=new JButton( ); FlowLayout

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号