G
Guest
I would like to have a JTextArea with a background white and text should be
readonly.
The way I tried is something like this:
JTextArea text = new JTextArea();
text.setEditable(false);
text.setBackground(Color.white);
In Java this works ok the backround is set to white.
In J# the background stays grey.
Thanks
readonly.
The way I tried is something like this:
JTextArea text = new JTextArea();
text.setEditable(false);
text.setBackground(Color.white);
In Java this works ok the backround is set to white.
In J# the background stays grey.
Thanks