views:

37

answers:

1

I have a 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?

+1  A: 

I'm not familiar with JTable, but I suppose either ListView or DataGrid will do the trick.

Anvaka