Found 9297 Articles for Object Oriented Programming

How to create a progress bar using JavaFX?

Maruthi Krishna
Updated on 18-May-2020 08:10:11

797 Views

A progress bar is an indicator of the advancement of an event (a series of steps). You can create a progress bar by instantiating the javafx.scene.control.ProgressBar class.ExampleThe following Example demonstrates the creation of a ProgressBar.import javafx.application.Application; import javafx.geometry.Insets; import javafx.scene.Group; import javafx.scene.Scene; import javafx.scene.control.ProgressBar; import javafx.scene.control.ProgressIndicator; import javafx.scene.layout.HBox; import javafx.scene.paint.Color; import javafx.stage.Stage; public class ProgressBarExample extends Application {    public void start(Stage stage) {       //Creating a progress bar       ProgressBar progress = new ProgressBar();       //Setting value to the progress bar       progress.setProgress(0.5);       //Creating a progress indicator   ... Read More

Implementing the page factory in pagination

Maruthi Krishna
Updated on 18-May-2020 08:08:20

241 Views

Pagination divides content up between pages and allows users to skip between pages or go in order through the content. You can create pagination by instantiating the javafx.scene.control.Pagination class.ExampleThe following Example demonstrates hoe to create pagination and add data to it.import java.io.FileInputStream; import java.io.InputStream; import javafx.application.Application; import javafx.scene.Scene; import javafx.scene.control.Pagination; import javafx.scene.image.Image; import javafx.scene.image.ImageView; import javafx.scene.layout.AnchorPane; import javafx.scene.paint.Color; import javafx.stage.Stage; public class PaginationAction extends Application {    public ImageView pageContent(int pageIndex){       try{          //Creating the image view          ImageView imageView = new ImageView();          //Setting the image view ... Read More

How to create a pagination using JavaFX?

Maruthi Krishna
Updated on 18-May-2020 08:05:47

374 Views

Pagination divides content up between pages and allows users to skip between pages or go in order through the content. You can create pagination by instantiating the javafx.scene.control.Pagination class.ExampleThe following Example demonstrates the creation of a Pagination.import javafx.application.Application; import javafx.geometry.Insets; import javafx.scene.Group; import javafx.scene.Scene; import javafx.scene.control.Pagination; import javafx.scene.layout.VBox; import javafx.scene.paint.Color; import javafx.stage.Stage; public class PaginationExample extends Application {    public void start(Stage stage) {       //Creating a pagination       Pagination pagination = new Pagination();       //Setting number of pages       pagination.setPageCount(10);       //Creating a vbox to hold the pagination   ... Read More

How to create a TreeView using JavaFX?

Maruthi Krishna
Updated on 18-May-2020 08:00:25

1K+ Views

A tree provides a view of hierarchical structures, each tree contains a root (highest object) and it contains children. You can create a tree view by instantiating the javafx.scene.control.TreeView class.ExampleThe following Example demonstrates the creation of a TreeView.import javafx.application.Application; import javafx.geometry.Insets; import javafx.scene.Group; import javafx.scene.Scene; import javafx.scene.control.TreeItem; import javafx.scene.control.TreeView; import javafx.scene.layout.VBox; import javafx.scene.paint.Color; import javafx.stage.Stage; public class TreeViewExample extends Application {    public void start(Stage stage) {       //Creating tree items       TreeItem root1 = new TreeItem("Programming Languages");       TreeItem item1 = new TreeItem("Java");       TreeItem item2 = new TreeItem("Python");       ... Read More

How to add data to a TableView in JavaFX?

Maruthi Krishna
Updated on 18-May-2020 07:58:15

7K+ Views

TableView is a component that is used to create a table populate it, and remove items from it. You can create a table view by instantiating thejavafx.scene.control.TableView class.ExampleThe following Example demonstrates how to create a TableView and add data to it.import javafx.application.Application; import javafx.collections.FXCollections; import javafx.collections.ObservableList; import javafx.geometry.Insets; import javafx.scene.Scene; import javafx.scene.control.Label; import javafx.scene.control.TableColumn; import javafx.scene.control.TableView; import javafx.scene.control.cell.PropertyValueFactory; import javafx.scene.layout.VBox; import javafx.scene.text.Font; import javafx.scene.text.FontPosture; import javafx.scene.text.FontWeight; import javafx.stage.Stage; public class SettingData extends Application {    public void start(Stage stage) {       //Label for education       Label label = new Label("File Data:");       Font font ... Read More

How to create a TableView in JavaFX?

Maruthi Krishna
Updated on 18-May-2020 07:55:43

2K+ Views

TableView is a component that is used to create a table populate it, and remove items from it. You can create a table view by instantiating the javafx.scene.control.TableView class.ExampleThe following Example demonstrates the creation of a TableView.import javafx.application.Application; import javafx.collections.FXCollections; import javafx.collections.ObservableList; import javafx.geometry.Insets; import javafx.scene.Scene; import javafx.scene.control.Label; import javafx.scene.control.TableColumn; import javafx.scene.control.TableView; import javafx.scene.layout.VBox; import javafx.scene.text.Font; import javafx.scene.text.FontPosture; import javafx.scene.text.FontWeight; import javafx.stage.Stage; public class TableViewExample extends Application {    public void start(Stage stage) {       //Label for education       Label label = new Label("File data:");       Font font = Font.font("verdana", FontWeight.BOLD, FontPosture.REGULAR, 12);     ... Read More

How to create a ListView using JavaFX?

Maruthi Krishna
Updated on 18-May-2020 07:53:55

4K+ Views

A list view is a scrollable list of items from which you can select desired items. You can create a list view component by instantiating the javafx.scene.control.ListView class. You can create either a vertical or a horizontal ListView.ExampleFollowing the JavaFX program demonstrates the creation of a ListView.import javafx.application.Application; import javafx.collections.FXCollections; import javafx.collections.ObservableList; import javafx.geometry.Insets; import javafx.scene.Scene; import javafx.scene.control.Label; import javafx.scene.control.ListView; import javafx.scene.layout.VBox; import javafx.scene.text.Font; import javafx.scene.text.FontPosture; import javafx.scene.text.FontWeight; import javafx.stage.Stage; public class ListViewExample extends Application {    public void start(Stage stage) {       //Label for education          Label label = new Label("Educational qualification:");     ... Read More

How to add scroll bar to an image in JavaFX?

Maruthi Krishna
Updated on 18-May-2020 07:49:57

552 Views

A scroll bar contains a thumb, right and left buttons attached to a scrollable pane. Using this you can scroll the pane (attached to it) up and down.In JavaFX the javafx.scene.control.ScrollBar represents a scrollbar. You can create a scroll bar instantiating this class. Usually, a scroll bar is associated with other controls such as ScrollPane, ListView, etc.Setting ScrollBar to an imageThe property named value specifies the current value represented by the scroll bar you can add a listener to this property using the addListener() method.To attach a scroll bar to an image −Create an ImageView object representing the required image.Create ... Read More

How to create a ScrollBar using JavaFX?

Maruthi Krishna
Updated on 18-May-2020 07:47:12

805 Views

A scroll bar contains a thumb, right and left buttons attached to a scrollable pane. Using this you can scroll the pane (attached to it) up and down.In JavaFX the javafx.scene.control.ScrollBar represents a scrollbar. You can create a scroll bar instantiating this class.You can create either a vertical or a horizontal scroll bar, by default a horizontal scroll bar is created, you can change it to vertical using the setOrientation() method.Usually, a scroll bar is associated with other controls such as ScrollPane, ListView, etc.Exampleimport javafx.application.Application; import javafx.scene.Group; import javafx.scene.Scene; import javafx.scene.control.Label; import javafx.scene.control.ScrollBar; import javafx.scene.paint.Color; import javafx.scene.text.Font; import javafx.scene.text.FontPosture; import ... Read More

How to create a MenuBar in JavaFX?

Maruthi Krishna
Updated on 18-May-2020 07:45:24

851 Views

A menu bar is a user interface element that holds all the menus, it is usually placed on the top. In JavaFX the javafx.scene.control.MenuBar class represents a menu bar. You can create a menu bar by instantiating this class.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.Adding menus to the MenuBarThe MenuBar class contains an observable list which holds all the menus, you can get this list by invoking the getMenus() method.You can create the required number of menus and add them to the observable list ... Read More

Advertisements