2010-02-11 100 views
-1

是任何機構都知道一個代碼,使一個Java文本框架。,,請我需要幫助我需要幫助,使文本框

+0

請讓我們知道你已經嘗試過,這並不工作。 – akf 2010-02-11 02:48:41

+0

我需要一個代碼來計算兩個數字+, - ,/,* – 2010-02-11 03:04:57

+0

聽起來像你只是需要幫助。 – pstanton 2010-02-11 05:28:39

回答

1

你的問題是缺乏,但...

JFrame frame = new JFrame(); 
Container cp = frame.getContentPane(); 
cp.add(new JTextArea()); 
frame.pack(); 
frame.setVisible(true); 

^將是最簡單的例子。

JFrame frame = new JFrame(); 
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); 
Container cp = frame.getContentPane(); 
JTextArea txt = new JTextArea(); 
JScrollPane scroll = new JScrollPane(txt); 
scroll.setPreferredSize(new Dimension(200, 200)); 
cp.add(scroll); 
frame.pack(); 
frame.setVisible(true); 

^使滾動

0
JTextField tf = new JTextField("Should Do your homework first"); 

JTextArea ta = new JTextArea("Is this homework, \n the queestion is not clear"); 
+0

緩和起來,他是個蠢貨。 – pstanton 2010-02-11 02:51:00

+0

:)...這是要在一個更輕的維恩良好的意志:) – 2010-02-11 03:20:28