Book Image

NetBeans IDE 8 Cookbook

By : David Salter, Rhawi Dantas
Book Image

NetBeans IDE 8 Cookbook

By: David Salter, Rhawi Dantas

Overview of this book

<p>From the start to the end of a Java project's lifecycle, this book will show you how to perform many key tasks with the NetBeans IDE, uncovering more about mobile, desktop, and enterprise Java along the way.</p> <p>You will start by creating Java projects and learning how to refactor and use NetBeans tools to increase developer efficiency. You will then get a walkthrough of how to create a desktop application before covering JavaFX and mobile applications and how to use external services within them. Having seen how to create many different types of applications, you will then be shown how to test and profile them before storing them in revision control systems such as Git or Subversion. Finally, you will learn how to extend NetBeans itself by adding new features to the IDE.</p>
Table of Contents (19 chapters)
NetBeans IDE 8 Cookbook
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

Changing the look and feel of NetBeans


Java provides a set of different Look and Feel styles that can be applied to applications. These Look and Feel styles change the way that user interface components are displayed within the application (the look) and how they behave (the feel). Java provides native Look and Feel components (for example, on Windows or on Mac OS X) as well as custom-styled components. Additional Look and Feel styles can be designed in addition to the ones provided by default with Java.

Getting ready

To change the look and feel of NetBeans, no specific projects are required to be loaded. All that is required is a running copy of NetBeans.

How to do it…

  1. Click on Tools and then Options within the main NetBeans menu.

  2. On the Options dialog, select the Appearance option.

  3. Select the Look and Feel tab, which is displayed in the following screenshot:

  4. Select the required option from the Preferred look and feel drop-down box.

  5. Restart NetBeans for the changes to take effect.

How it works…

Specifying...