
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Maruthi Krishna has Published 870 Articles

Maruthi Krishna
3K+ Views
A menu is a list of options or commands presented to the user. In JavaFX a menu is represented by the javafx.scene.control.Menu class, you can create a menu by instantiating this class.While instantiating, you can pass the title of the menu as a parameter to its constructor. The Menu class ... Read More

Maruthi Krishna
2K+ Views
JavaFX provides a class known as Slider, this represents a slider component which displays continuous range of values. This contains a track on which the number values are displayed. Along the track there is a thumb pointing to the numbers. You can provide the maximum, minimum and initial values of ... Read More

Maruthi Krishna
351 Views
The area chart accepts a series of data points (x, y) as input values, connects them using a line, and maps the area between the obtained line and the axis. In JavaFX, you can create an area chart by instantiating the javafx.scene.chart.AreaChart class.While instantiating this class you must pass the ... Read More

Maruthi Krishna
661 Views
A tooltip is a UI element, using which you can provide additional information about the elements in a GUI application.Whenever you hover over the mouse pointer over an element (say, button, label, etc..) in your application, the tooltip displays a hint about it.In JavaFX the tooltip is represented by the ... Read More

Maruthi Krishna
396 Views
Typically, a date picker displays a calendar, from which you can browse through different months and pick a date. The picked date is formatted and inputs into the system.In JavaFX the javafx.scene.control.DatePicker class represents the date picker. This contains a text (date) filed and a date chooser. You can either ... Read More

Maruthi Krishna
1K+ Views
A separator is a horizontal or, the vertical line separating the UI elements of an application. In JavaFX the javafx.scene.control.Separator class represents a separator, to create a separator you need to instantiate this class. You can control the visual appearance of the separator using CSS.You create an alternative style to ... Read More

Maruthi Krishna
983 Views
A separator is a horizontal or, the vertical line separating the UI elements of an application.In JavaFX the javafx.scene.control.Separator class represents a separator, to create a separator you need to instantiate this class. This class has three properties namely −halignment − This property specifies the horizontal alignment of a vertical ... Read More

Maruthi Krishna
546 Views
Choice boxIn JavaFX a choice box is represented by the class javafx.scene.control.ChoiceBox. You can create a choice box by instantiating this class. A choice box holds a small set of multiple choices and, allows you to select only one of them.It has two states −Showing − You can see the ... Read More

Maruthi Krishna
488 Views
Choice boxIn JavaFX a choice box is represented by the class javafx.scene.control.ChoiceBox. You can create a choice box by instantiating this class. A choice box holds a small set of multiple choices and, allows you to select only one of them.It has two states −Showing − You can see the ... Read More

Maruthi Krishna
1K+ Views
A choice box holds a small set of multiple choices and, allows you to select only one of them. This will have two states showing and not showing. When showing, you can see the list of choices in a choice box and while not showing, it displays the current choice. ... Read More