Skip to content

Instantly share code, notes, and snippets.

View ozgurozkok's full-sized avatar
🎯
Focusing

ozgur ozgurozkok

🎯
Focusing
View GitHub Profile
@alamenai
alamenai / JavaFXCSVTableView.java
Last active January 1, 2023 22:32
Java example read csv file and display the content in JavaFX TableView.
package javafxcsvtableview;
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.util.logging.Level;
import java.util.logging.Logger;
import javafx.application.Application;
import javafx.beans.property.SimpleStringProperty;
@kinsleykajiva
kinsleykajiva / JavaFX TC .css
Created September 12, 2017 05:33 — forked from k33ptoo/JavaFX TC .css
Contains basic css for customizing a TableView and Charts.
.table-view .column-header,
.table-view .column-header-background .filler {
-fx-background-color: #6622CC;
}
.table-view .column-header .label{
-fx-text-fill: white;
-fx-font-weight: bold;
-fx-alignment: CENTER_LEFT;
}
.table-view .cell{