Just being new to WPF I"m not sure what control or approach would be best for this requirement, for a WPF application.
- I want to present a summary table of information, but the user should be able to decide to view the information based on either: "All Time", Month, Week or Day.
- I'd like to visually have the selection of the option appear at the top of this section and have it appear as a TabControl
- I'm not sure however whether TabControl is the best choice re repeating the table for each Tab Item
- So overall functionally what would work is just radio buttons across the top, however what I want visually is a TabControl look
What would be the best way to achieve the TabControl look but with a programming approach for which I don't have to repeat things in each Tab Item?
For example, would I use a TabControl and then a WPF template to do the equivalent of an include in each Tab Item but with a different input parameter? (haven't used WPF templates before)
Thanks