javax.swing.text.JTextComponent.setBounds()方法的使用及代码示例

x33g5p2x  于2022-01-21 转载在 其他  
字(1.7k)|赞(0)|评价(0)|浏览(118)

本文整理了Java中javax.swing.text.JTextComponent.setBounds()方法的一些代码示例,展示了JTextComponent.setBounds()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。JTextComponent.setBounds()方法的具体详情如下:
包路径:javax.swing.text.JTextComponent
类名称:JTextComponent
方法名:setBounds

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();

相关文章

JTextComponent类方法