如何从右到左(在JOptionPane内部)设置JTextArea的方向
|
我里面有
JScrollPane
,里面有ѭ1and,并且我试图从右到左设置JTextArea的方向,所以里面的文本将从右开始,滚动条在左边
我已经尝试了以下方法,但是它们并没有影响定向的方向:
txt.applyComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT);
txt.setComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT);
txt.setAlignmentX(JTextArea.RIGHT_ALIGNMENT);
编辑:
camickr和rashgod提供的两个答案可以正常工作,但在我的程序中无法使用JTextArea作为对象Message并将其传递给OptionPane。
编辑2:
我发现如果在JOptionPane内容上应用setComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT);
是行不通的..是否有替代方法可以解决此问题?
类似于我的代码:
import java.awt.*;
import java.util.*;
import javax.swing.*;
public class TextArea extends JPanel
{
private JTextArea txt = new JTextArea();
public TextArea()
{
setLayout(new GridLayout());
txt.setComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT);
JScrollPane scroll = new JScrollPane(txt);
scroll.setComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT);
setPreferredSize(new Dimension(200,200));
this.add(scroll);
}
private void display()
{
Object[] options = {this};
JOptionPane pane = new JOptionPane();
int option = pane.showOptionDialog(null, null, \"Title\", JOptionPane.DEFAULT_OPTION, JOptionPane.PLAIN_MESSAGE, null, options, options[0]);
}
public static void main(String[] args)
{
new TextArea().display();
}
}
没有找到相关结果
已邀请:
4 个回复
桔马牛
所以里面的文字会从右边开始
文本从右侧开始,但在您键入时仍会追加到末尾,而不是插入到行首。 更新: 我不知道为什么它在选项窗格中不起作用。这是一个简单的解决方案:
草票
催备南菠亨
氏脑
他们的作用是:
改变
的方向;和,
立即刷新
,以便正确显示 仅将
设置为
是不够的。
不会强制文本重新对齐。对我来说,一种快速的解决方案是更新TextArea的内容。这迫使文本重新调整自身。