2015-11-26 136 views
7

如何設置我的TableView中的「THIS」點的樣式?在CSS中設置TableView(JavaFX)

TableView

我的CSS代碼如下:

*/* 
* Empty Stylesheet file. 
*/ 

.root{ 
    -fx-background-color: #262626; 
} 

.table-view{ 
    -fx-background-color: transparent; 
} 

.table-view:focused{ 
    -fx-background-color: transparent; 
} 

/* Spaltenköpfe 
    Struktur column-header-background -> column-header */ 

.table-view .column-header-background{ 
    -fx-background-color: linear-gradient(#131313 0%, #424141 100%); 
} 

.table-view .column-header-background .label{ 
    -fx-background-color: transparent; 
    -fx-text-fill: white; 
} 

.table-view .column-header { 
    -fx-background-color: transparent; 
} 

.table-view .table-cell{ 
    -fx-text-fill: white; 
} 

.table-row-cell{ 
    -fx-background-color: -fx-table-cell-border-color, #616161; 
    -fx-background-insets: 0, 0 0 1 0; 
    -fx-padding: 0.0em; /* 0 */ 
} 

.table-row-cell:odd{ 
    -fx-background-color: -fx-table-cell-border-color, #424242; 
    -fx-background-insets: 0, 0 0 1 0; 
    -fx-padding: 0.0em; /* 0 */ 
} 

.table-row-cell:selected { 
    -fx-background-color: #005797; 
    -fx-background-insets: 0; 
    -fx-background-radius: 1; 
} 

.table-view > .virtual-flow > .scroll-bar:vertical, 
.table-view > .virtual-flow > .scroll-bar:vertical > .track, 
.table-view > .virtual-flow > .scroll-bar:vertical > .track-background, 
.table-view > .virtual-flow > .scroll-bar:horizontal, 
.table-view > .virtual-flow > .scroll-bar:horizontal > .track, 
.table-view > .virtual-flow > .scroll-bar:horizontal > .track-background { 
    -fx-background-color: transparent; 
} 



.table-view > .virtual-flow > .scroll-bar > .increment-button, 
.table-view > .virtual-flow > .scroll-bar > .decrement-button { 
    -fx-opacity: 0; 
}* 

所以你可以看到我已經改變了科拉姆頭背景,一切都像這樣。我也改變了TableView的背景。所以我真的不知道我的CSS應該改變什麼。 感謝您的幫助! :)

-GhostfaceChilla-

回答

0
.table-view{ 
    -fx-background-color: transparent; 
} 

如果TableView中沒有記錄,背景顏色可以是白色。也許很好有造型佔位符