本文整理汇总了Java中javax.swing.JFrame.setEnabled方法的典型用法代码示例。如果您正苦于以下问题:Java JFrame.setEnabled方法的具体用法?Java JFrame.setEnabled怎么用?Java JFrame.setEnabled使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类javax.swing.JFrame
的用法示例。
在下文中一共展示了JFrame.setEnabled方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: AcercaDe
import javax.swing.JFrame; //导入方法依赖的package包/类
/**
* Create the frame.
*/
public AcercaDe(JFrame principal) {
setIconImage(Toolkit.getDefaultToolkit().getImage(AcercaDe.class.getResource("/biblioteca/images/book.png")));
this.principal=principal;
principal.setEnabled(false);
setTitle("Acerca de Biblioteca 2017");
setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
setBounds(100, 100, 332, 330);
setLocationRelativeTo(null);
contentPane = new JPanel();
contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
setContentPane(contentPane);
contentPane.setLayout(null);
JTextPane txtpnHola = new JTextPane();
txtpnHola.setForeground(Color.WHITE);
txtpnHola.setEditable(false);
txtpnHola.setBackground(Color.BLACK);
txtpnHola.setText("Biblioteca 2017 \u00A9 Juan Delgado Salmer\u00F3n");
txtpnHola.setBounds(10, 11, 311, 20);
contentPane.add(txtpnHola);
JTextPane txtpnVersinBuild = new JTextPane();
txtpnVersinBuild.setForeground(Color.WHITE);
txtpnVersinBuild.setEditable(false);
txtpnVersinBuild.setText("Versi\u00F3n 1.1.0\r\nBuild 20170516-5000");
txtpnVersinBuild.setBackground(Color.BLACK);
txtpnVersinBuild.setBounds(10, 42, 311, 34);
contentPane.add(txtpnVersinBuild);
JTextPane txtpnCopyrightBiblioteca = new JTextPane();
txtpnCopyrightBiblioteca.setForeground(Color.WHITE);
txtpnCopyrightBiblioteca.setEditable(false);
txtpnCopyrightBiblioteca.setText("Copyright 2017 Biblioteca 2017 creado por Juan Delgado Salmer\u00F3n. Todos los derechos reservados por JunDev.\r\nEsta aplicaci\u00F3n tiene open-source los primeros 24 d\u00EDas de su distribuci\u00F3n, despu\u00E9s de dicha fecha se cobrar\u00E1n 200\u20AC por ella.");
txtpnCopyrightBiblioteca.setBackground(Color.BLACK);
txtpnCopyrightBiblioteca.setBounds(10, 98, 311, 109);
contentPane.add(txtpnCopyrightBiblioteca);
JLabel lblImage = new JLabel("");
lblImage.setIcon(new ImageIcon(AcercaDe.class.getResource("/biblioteca/images/jundev.png")));
lblImage.setBounds(10, 214, 311, 79);
contentPane.add(lblImage);
JPanel panel = new JPanel();
panel.setBackground(Color.BLACK);
panel.setBounds(0, 0, 331, 304);
contentPane.add(panel);
setVisible(true);
addWindowListener(this);
setResizable(false);
}