码迷,mamicode.com
首页 > 编程语言 > 详细

javafx tableview 鼠标触发更新属性

时间:2017-08-25 12:25:06      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:pre   super   style   protect   表格   ttext   enter   prot   str   

public class HoverCell extends TableCell<Person, String> {
public HoverCell(StringProperty hoverProperty) { setOnMouseEntered(e -> hoverProperty.set(getItem())); setOnMouseExited(e -> hoverProperty.set(null)); } @Override protected void updateItem(String item, boolean empty) { super.updateItem(item, empty); setText(empty ? null : item); } }

记录一下鼠标滑动触发表格更新内容,后续继续添加tableview的其他内容

javafx tableview 鼠标触发更新属性

标签:pre   super   style   protect   表格   ttext   enter   prot   str   

原文地址:http://www.cnblogs.com/miller83/p/7426885.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!