|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
如果你学习的是市场营销,是销售,也许参加大课堂的学习会更合适,因为你的工作能力中有个基础就是搭建自己的人脉,/***********************************************************************
*Module:Caculater.java
*Author:Administrator
*Created:2004-12-723:48:21
*Purpose:
***********************************************************************/
packageorg.heixue.test.applet;
/**
*@authorAdministrator
*/
importjavax.swing.*;
importjava.awt.event.*;
importjava.awt.*;
publicclassCalculaterextendsJApplet{
JMenu[]menus={newJMenu("选项"),newJMenu("关于")};
JMenuItem[]items={newJMenuItem("关于"),newJMenuItem("设置背景致")};
JButtonb1=newJButton("运算");
JOptionPaneb2=newJOptionPane("运算...");
JTextFieldtxt1=newJTextField("100",10);
JTextFieldtxt2=newJTextField("200",10);
JTextFieldtxt3=newJTextField(20);
JLabel[]label={newJLabel("+"),newJLabel("=")};
JColorChooserjcc=newJColorChooser();
ActionListeneral=newActionListener(){
publicvoidactionPerformed(ActionEvente){
//Stringname=((JButton)e.getSource()).getText();
intm=JOptionPane.showConfirmDialog(null,"持续举行运算吗?","断定",JOptionPane.YES_NO_OPTION);
if(m==0){
Stringop1=txt1.getText();
Stringop2=txt2.getText();
txt3.setText(bussiness(op1,op2));
//txt3.setText(m+"");
}
}
};
ActionListeneral2=newActionListener(){
publicvoidactionPerformed(ActionEvente){
JOptionPane.showMessageDialog(null,"黑雪小组","关于...",JOptionPane.INFORMATION_MESSAGE);
}
};
ActionListeneral3=newActionListener(){
publicvoidactionPerformed(ActionEvente){
JColorChooser.createDialog(null,"背景致...",true,jcc,al4,null).show();
}
};
ActionListeneral4=newActionListener(){
publicvoidactionPerformed(ActionEvente){
changeFace(0,jcc.getColor());
}
};
publicvoidinit(){
//initializelayout.
Containercp=getContentPane();
cp.setLayout(newFlowLayout());
//setmenubar.
menus[0].add(items[1]);
items[1].addActionListener(al3);
menus[1].add(items[0]);
items[0].addActionListener(al2);
JMenuBarmb=newJMenuBar();
for(inti=0;i<menus.length;i++)
mb.add(menus[i]);
setJMenuBar(mb);
//add3JTextfield.
cp.add(txt1);
cp.add(label[0]);
cp.add(txt2);
cp.add(label[1]);
cp.add(txt3);
//add1buttonwithJOptionPane
cp.add(b1);
b1.addActionListener(al);
}
voidchangeFace(inti,Objecto){
if(i==0){
//设置背景致
this.getContentPane().setBackground((Color)o);
//setBackground((Color)o);
}
}
Stringbussiness(Stringop1,Stringop2){
intresult=0;
intop11=0;
intop21=0;
try{
op11=Integer.parseInt(op1);
}catch(Exceptione1){
}
try{
op21=Integer.parseInt(op2);
}catch(Exceptione1){
}
result=op11+op21;
return""+result;
}
publicstaticvoidmain(String[]args){
JAppletapplet=newCalculater();
JFrameframe=newJFrame("盘算器");
//Toclosetheapplication:
//Console.setupClosing(frame);
frame.getContentPane().add(applet);
frame.setSize(260,140);
applet.init();
applet.start();
frame.setVisible(true);
}
}///:~
C#是盗用了Java的源代码,仿照开发的,原因是Java是开源的啊,盗了也白盗,还有一点,开发C#语言的团队是就是开发Java语言的团队,是微软重金挖过去的啊 |
|