本文整理匯總了Java中javax.swing.JTextArea.setVisible方法的典型用法代碼示例。如果您正苦於以下問題:Java JTextArea.setVisible方法的具體用法?Java JTextArea.setVisible怎麽用?Java JTextArea.setVisible使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類javax.swing.JTextArea
的用法示例。
在下文中一共展示了JTextArea.setVisible方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: MarioError
import javax.swing.JTextArea; //導入方法依賴的package包/類
public MarioError(String errorMessage){
super("ERROR");
//applicable for multi monitor workstations
GraphicsDevice gd = GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice();
screenWidth = gd.getDisplayMode().getWidth();
screenHight = gd.getDisplayMode().getHeight();
this.setLocation((int)((screenWidth - frameWidth)*0.5), (int)(screenHight*0.25));
this.setSize(frameWidth , (int)(screenHight*0.5));
this.getContentPane().setLayout(new GridBagLayout());
this.setDefaultCloseOperation(DISPOSE_ON_CLOSE);
titleLabel = new JLabel();
titleLabel.setText("Unfortunately an Error occured");
titleLabel.setHorizontalAlignment(SwingConstants.CENTER);
titleLabel.setFont(new Font(titleLabel.getFont().getFontName(), Font.BOLD, 32));
titleLabel.setForeground(Color.RED);
titleLabel.setVisible(true);
LayoutHelper.putGrid(this, titleLabel, 0, 0, 2,1, 1.0, 1.0);
errorText = new JTextArea();
errorText.setText(errorMessage);
errorText.setWrapStyleWord(true);
errorText.setLineWrap(true);
errorText.setEditable(false);
errorText.setFont(new Font(errorText.getFont().getFontName(), Font.BOLD, 20));
errorText.setVisible(true);
errorScrollPane = new JScrollPane(errorText);
errorText.setCaretPosition(0);
LayoutHelper.putGrid(this, errorScrollPane, 0, 1, 2,1, 1.0, 1.0);
helpButton = new JButton("HELP");
helpButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
if (Desktop.isDesktopSupported()) {
try {
File myFile = new File("D:/Data/Desktop/Mario SoSe15 Einf�hrung/MarioHelp.pdf");
Desktop.getDesktop().open(myFile);
} catch (IOException ex) {
new MarioError("Could not find help file");
}
}
}
});
LayoutHelper.putGrid(this, helpButton, 0, 2, 2,1, 1.0, 0.2);
this.setVisible(true);
}