本文整理了Java中javax.swing.text.JTextComponent.setBounds()
方法的一些代码示例,展示了JTextComponent.setBounds()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。JTextComponent.setBounds()
方法的具体详情如下:
包路径:javax.swing.text.JTextComponent
类名称:JTextComponent
方法名:setBounds
暂无
代码示例来源:origin: de.sciss/prefuse-core
/**
* Show a text editing widget containing the given text and spanning the
* specified bounding box. Use stopEditing() to hide the text widget. Use
* the method calls getTextEditor().getText() to get the resulting edited
* text.
* @param txt the text string to display in the text widget
* @param r Rectangle representing the desired bounding box of the text
* editing widget
*/
public void editText(String txt, Rectangle r) {
if ( m_editing ) { stopEditing(); }
m_editing = true;
m_editor.setBounds(r.x,r.y,r.width,r.height);
m_editor.setText(txt);
m_editor.setVisible(true);
m_editor.setCaretPosition(txt.length());
m_editor.requestFocus();
}
代码示例来源:origin: org.bidib.jbidib.swinglabs.swingx/swingx-core
promptComponent.setEnabled(txt.isEnabled());
promptComponent.setOpaque(txt.isOpaque());
promptComponent.setBounds(txt.getBounds());
Border b = txt.getBorder();
代码示例来源:origin: com.haulmont.thirdparty/swingx-core
promptComponent.setEnabled(txt.isEnabled());
promptComponent.setOpaque(txt.isOpaque());
promptComponent.setBounds(txt.getBounds());
Border b = txt.getBorder();
代码示例来源:origin: org.swinglabs.swingx/swingx-all
promptComponent.setEnabled(txt.isEnabled());
promptComponent.setOpaque(txt.isOpaque());
promptComponent.setBounds(txt.getBounds());
Border b = txt.getBorder();
代码示例来源:origin: org.swinglabs.swingx/swingx-core
promptComponent.setEnabled(txt.isEnabled());
promptComponent.setOpaque(txt.isOpaque());
promptComponent.setBounds(txt.getBounds());
Border b = txt.getBorder();
内容来源于网络,如有侵权,请联系作者删除!