I’m learning to use Netbeans and for my intro pet projects, I don’t want it storing widget properties in a properties file. For example, by default, it puts the text property of a JLabel into a properties file. There’s a checkbox to disable it per property but is there a way to do that globally? And is there a way to easily disable this for 20 widgets I’ve already defined?
Share
You can disable it on a per-form level by going into Design mode, selecting the topmost item in the Inspector window, then unchecking the
Automatic Internationalizationproperty.You can also disable it globally by going to
Tools > Options > Miscellaneous > Gui Builderand changingAutomatic Internationalizationtooff.