是任何機構都知道一個代碼,使一個Java文本框架。,,請我需要幫助我需要幫助,使文本框
-1
A
回答
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
相關問題
- 1. asp.net空文本框幫助需要
- 2. 需要幫助asp.net其他文本框
- 3. 我需要一個文本框的幫助
- 4. 我需要幫助爲C#顯示多個文本框?
- 5. 我需要以下腳本的幫助
- 6. 我需要幫助與asp.net腳本
- 7. 需要我的bash腳本幫助
- 8. 我需要幫助檢查腳本
- 9. 需要幫助使用複選框
- 10. 需要幫助使用ATK框架
- 11. BASH需要腳本幫助
- 12. Bash腳本幫助需要
- 13. 組腳本幫助需要
- 14. 腳本需要幫助 - jquery
- 15. 需要幫助腳本
- 16. 需要Shell腳本幫助
- 17. 腳本幫助需要
- 18. MySQL:需要腳本幫助
- 19. 我需要幫助(邏輯)
- 20. 我需要浮點幫助
- 21. 需要幫助我做
- 22. 我需要快速幫助! :'(
- 23. 需要幫助我查詢
- 24. 我需要幫助的codechef
- 25. 需要jQuery文本旋轉器幫助
- 26. 文本編輯需要幫助
- 27. 需要幫助集中文本輸出
- 28. 需要幫助複製文本
- 29. 需要幫助解析文本
- 30. 需要幫助更新文本,javascript
請讓我們知道你已經嘗試過,這並不工作。 – akf 2010-02-11 02:48:41
我需要一個代碼來計算兩個數字+, - ,/,* – 2010-02-11 03:04:57
聽起來像你只是需要幫助。 – pstanton 2010-02-11 05:28:39