Desktop
WPF
Building on my previous post where I talked about how to bind data to the RadGridView, today I want to show how you can display hierarchical data in the grid. I will follow the same concept of building an application for a car repair shop to manage vehicles in for repair. I will leverage two classes to display the data. The original Car class which was used previously and a new CustomerComplaint class. The Complaint property of the Car object was initially a string, but we need to allow for several issues to be reported so we will use the CustomerComplaint class to...