I am working on my first WPF app and am trying to find similar functionality in the RadGridView that exists in the RadGrid for ASP.NET which I have lots of experience in.
With RadGrids, I could create a GridTemplateColumn that contains various controls like labels and dropdowns that I could acquire instances of using .FindControl() in the codebehind's ItemDataBound event. I could then put any text I wanted into these controls based on logic in the codebehind.
I discovered the DataTemplate object in the RadGridView, but it seems I can only use this to bind data from an object's member property. What I want to do is insert my own custom information directly rather than rely on an object member since the data I want to display might not be offered by any member within the object.
Links to where this information can be found will be all I need unless you'd like to offer any other additional info here.
With RadGrids, I could create a GridTemplateColumn that contains various controls like labels and dropdowns that I could acquire instances of using .FindControl() in the codebehind's ItemDataBound event. I could then put any text I wanted into these controls based on logic in the codebehind.
I discovered the DataTemplate object in the RadGridView, but it seems I can only use this to bind data from an object's member property. What I want to do is insert my own custom information directly rather than rely on an object member since the data I want to display might not be offered by any member within the object.
Links to where this information can be found will be all I need unless you'd like to offer any other additional info here.