资源描述:
《计算器界面设计》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、importjava.awt.*;importjavax.swing.*;publicclassJiSuanQiextendsJFrame{JMenuBarjmb;JMenujm1,jm2,jm3;JMenuItemjt1,jt2,jt3,jt4,jt5,jt6,jt7;JPaneljp1,jp2,jp3;JButtonjb1,jb2,jb3,jb4,jb5,jb6,jb7,jb8,jb9,jb10,jb11,jb12,jb13,jb14,jb15,jb16,jb17,jb18,jb19,jb20,jb21,jb22,jb23,
2、jb24,jb25,jb26,jb27;JTextFieldjtf;publicJiSuanQi(){jmb=newJMenuBar();jm1=newJMenu("编辑(E)");jm2=newJMenu("查看(V)");jm3=newJMenu("帮助(H)");jt1=newJMenuItem("复制(C)Ctrl+C");jt2=newJMenuItem("粘贴(P)Ctrl+V");jt3=newJMenuItem("标准型(T)");jt4=newJMenuItem("科学型(S)");jt5=newJMenuIt
3、em("数字分组(I)");jt6=newJMenuItem("帮助主题(H)");jt7=newJMenuItem("关于计算器(A)");jb1=newJButton("Backspace");jb1.setForeground(Color.red);jb2=newJButton("CE");jb2.setForeground(Color.red);jb3=newJButton("C");jb3.setForeground(Color.red);jb4=newJButton("MC");jb4.setForeground(C
4、olor.red);jb5=newJButton("MR");jb5.setForeground(Color.red);jb6=newJButton("MS");jb6.setForeground(Color.red);jb7=newJButton("M+");jb7.setForeground(Color.red);jb8=newJButton("7");jb8.setForeground(Color.blue);jb9=newJButton("8");jb9.setForeground(Color.blue);jb10=ne
5、wJButton("9");jb10.setForeground(Color.blue);jb11=newJButton("/");jb11.setForeground(Color.red);jb12=newJButton("sqrt");jb12.setForeground(Color.blue);jb13=newJButton("4");jb13.setForeground(Color.blue);jb14=newJButton("5");jb14.setForeground(Color.blue);jb15=newJBut
6、ton("6");jb15.setForeground(Color.blue);jb16=newJButton("*");jb16.setForeground(Color.red);jb17=newJButton("%");jb17.setForeground(Color.blue);jb18=newJButton("1");jb18.setForeground(Color.blue);jb19=newJButton("2");jb19.setForeground(Color.blue);jb20=newJButton("3")
7、;jb20.setForeground(Color.blue);jb21=newJButton("-");jb21.setForeground(Color.red);jb22=newJButton("1/x");jb22.setForeground(Color.blue);jb23=newJButton("0");jb23.setForeground(Color.blue);jb24=newJButton("+/-");jb24.setForeground(Color.blue);jb25=newJButton(".");jb2
8、5.setForeground(Color.blue);jb26=newJButton("+");jb26.setForeground(Color.red);jb27=newJButton("=");jb27.setForeground(Color.red);j