What is the corresponding WPF .NET component to a JTable in Java Swing?
I have a开发者_如何学C small Java Swing application that I want to rewrite in WPF .NET.
The application uses a JTable
with an AbstractTableModel
and a custom TableCellRenderer
. I use my custom cell renderer to display the objects in two rows.
What is the corresponding WPF .NET component to JTable?
I'm not familiar with JTable
, but I suppose either ListView or DataGrid will do the trick.
精彩评论