java - How to remove weird border on JTextArea -
i have jtextarea, jlist , couple other things on jpanel, jtextarea seems putting weird border around right , bottom side of textarea.
i tried using textarea.setborder(borderfactory.createlineborder(color.black, 2));
rid of it
that adds black border expected still weird border. here picture.
i can't seem remove white , gray border textarea
i have border layout 5 pixel gap vertically, , horizontally.
edit don't think stated correctly, white , grey "borders" there when don't add .setborder()
you seeing border of both jtextarea
, jscrollpane
, try remove border of scrollpane, following code:
jscrollpane1.setborder(null);
will this:
to this:
note how white line has disappeared jtextarea
. looking for?
Comments
Post a Comment