[JavaFx]ListViewについて確認してみました
JavaFxのListViewについて、どんなUIか調べるためにサンプルプログラムを作成してみました。
ソースコード
import javafx.application.Application;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.scene.Scene;
import javafx.scene.control.ListView;
import javafx.scene.layout.Pane;
import javafx.stage.Stage;
public class Main extends Application {
public static void main( String[] args ) {
Main.launch( args );
}
@Override
public void start( Stage stage ) throws Exception {
ObservableList<String> list = FXCollections.observableArrayList( "1", "2", "3", "4", "5", "6", "7" );
ListView<String> listview = new ListView<>( list );
Pane root = new Pane();
root.getChildren().add( listview );
stage.setTitle( "JavaFXサンプル(ListView)" );
Scene scene = new Scene( root );
stage.setScene( scene );
stage.show();
}
}
実行結果(表示されるUI)
参考サイト
-- https://openjfx.io/javadoc/11/javafx.controls/javafx/scene/control/ListView.html
Author And Source
この問題について([JavaFx]ListViewについて確認してみました), 我々は、より多くの情報をここで見つけました https://qiita.com/k-y-river/items/8cab28484f9efaf80084著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .