Maruthi Krishna

Maruthi Krishna

500 Articles Published

Articles by Maruthi Krishna

Page 22 of 50

How to create a progress bar using JavaFX?

Maruthi Krishna
Maruthi Krishna
Updated on 18-May-2020 1K+ 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
Maruthi Krishna
Updated on 18-May-2020 362 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 add data to a TableView in JavaFX?

Maruthi Krishna
Maruthi Krishna
Updated on 18-May-2020 8K+ 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 ScrollBar using JavaFX?

Maruthi Krishna
Maruthi Krishna
Updated on 18-May-2020 1K+ 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 add image to the menu item in JavaFX?

Maruthi Krishna
Maruthi Krishna
Updated on 18-May-2020 2K+ 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.A menu item is an option in the menu it is represented by the javafx.scene.control.MenuItem class, a superclass of the Menu class. You can display a text or a graphic as a menu item and add the desired cation to it.Image as menu itemThe menu item class has a property named graphic, representing the optional graphical element for the menu item. Generally, images are used along with the title ...

Read More

How to add mnemonics to a menu in JavaFX?

Maruthi Krishna
Maruthi Krishna
Updated on 18-May-2020 907 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.Setting mnemonic to a MenuA mnemonic is a number or character, in the menu title of User interface component (button, text field, etc.) typically with an underscore. If you press this character along with the Alt key the respective menu item will be focused.You can set a mnemonic to a menu using the setMnemonicParsing() method. Pass the boolean value true as an argument to this method.To set mnemonic parsing ...

Read More

JavaFX example to set action (behavior) to the menu item

Maruthi Krishna
Maruthi Krishna
Updated on 18-May-2020 2K+ Views

A menu is a list of options or commands presented to the user, typically menus contain items that perform some action. The contents of a menu are known as menu items.In JavaFX a menu is represented by the javafx.scene.control.Menu class, a menu item is represented by the javafx.scene.control.MenuItem class.Setting action to MenuItemThe MenuItem class inherits a property named onAction from the javafx.scene.control.ButtonBase class, which is of the type ObjectProperty. This property represents the action that is invoked whenever you press the button. You can set the value to this property using the setOnAction() method.One of the ways to set an action ...

Read More

How to create a Menu using JavaFX?

Maruthi Krishna
Maruthi Krishna
Updated on 18-May-2020 4K+ 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 contains an observable list that holds the contents of the menu (menu items).Menu items and menu barThe menu items are represented by the javafx.scene.control.MenuItem class, a superclass of the Menu class. You can display a text or a graphic as a menu item and add the desired cation to it.To ...

Read More

How to set action to a slider using JavaFX?

Maruthi Krishna
Maruthi Krishna
Updated on 18-May-2020 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 the slider.Setting action to the sliderThe property of the slider class named value, represents the current value of the slider, the valueProperty() returns a property object representing the current value of the slider. You can set action when the value is changed, by adding listener to this property, using the ...

Read More

How to add a separator for a choice box in JavaFX?

Maruthi Krishna
Maruthi Krishna
Updated on 18-May-2020 604 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 list of choices in a choice box.Not Showing − You can see the current choice of the choice boxSeparatorA 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 ...

Read More
Showing 211–220 of 500 articles
« Prev 1 20 21 22 23 24 50 Next »
Advertisements