这段代码转成GBK编码: public BookAdd(){ setTitle("添加新书"); setLayout(null); setSize(700,250); setResizable(false); //this.setOpaque(false); this.setForeground(Color.BLACK); int lx=50,ly=50; booktype.add("程序设计"); booktype.add("图形设计"); booktype.add("其他"); booktype.add("科技"); booktype.add("文学"); booktype.add("历史"); booktype.add("百科"); booktype.add("英语"); booktype.add("计算机"); booktype.add("Internet"); booktype.add("数学"); String str=getInsertOrderedList(); for(int i=0;i<booklb.length;i++){ if(lx>240){ lx=50; ly=ly+30; } booklb[i]=new JLabel(lbname[i]); booklb[i].setBounds(lx-10,ly,70,20); booktxt[i]=new TextField(); booktxt[i].setBounds(lx+60,ly,100,20); lx=lx+190; add(booklb[i]);add(booktxt[i]); } booktxt[0].setEditable(false); booktxt[0].setText(str); booktxt[9].setVisible(false); savebtn.setFont(new Font("楷体",Font.BOLD,12)); closebtn.setFont(new Font("楷体",Font.BOLD,12)); //下拉框选项设置 booktype.setBounds(300,170,100,20); savebtn.setBounds(130,210,80,25); closebtn.setBounds(280,210,80,25); add(booktype); add(savebtn); add(closebtn); addWindowListener(new WindowAdapter(){ public void windowClosing(WindowEvent e){ dispose(); ShowMain cMain=new ShowMain(); cMain.setRights(GlobalVar.manage); } }); savebtn.addActionListener(this); closebtn.addActionListener(this); setLocationRelativeTo(null); setVisible(true); }
时间: 2023-02-21 10:29:36 浏览: 154
DeleteCellDemo:(快速给cell添加删除功能)Quickly add delete function to the cell
这段代码是Java代码,没有被转换为GBK编码。该代码实现了一个图形界面,用于添加新书,它设置了窗口的标题、布局、大小和可调整性。在窗口中添加了标签、文本字段、按钮、下拉框等组件,并为这些组件设置了位置和功能。窗口关闭时会释放资源并显示主界面。
阅读全文