I'm incorporating a ReportViewer into my WPF app. To do so, it seems I must include the following:
<ResourceDictionary Source="/Telerik.ReportViewer.Wpf.Themes;component/Themes/Fluent/System.Windows.xaml" />
<ResourceDictionary Source="/Telerik.ReportViewer.Wpf.Themes;component/Themes/Fluent/Telerik.Windows.Controls.xaml" />
<ResourceDictionary Source="/Telerik.ReportViewer.Wpf.Themes;component/Themes/Fluent/Telerik.Windows.Controls.Input.xaml" />
<ResourceDictionary Source="/Telerik.ReportViewer.Wpf.Themes;component/Themes/Fluent/Telerik.Windows.Controls.Navigation.xaml" />
<ResourceDictionary Source="/Telerik.ReportViewer.Wpf.Themes;component/Themes/Fluent/Telerik.ReportViewer.Wpf.xaml" />
However, including those seems to change a lot of other styles in my application that I'd rather not have changed. I'd like to limit the scope of those changes to the ReportViewer itself. Because, in the instance I'm working on right now, my ReportViewer is the only thing in a TabItem, I can put those resources in the TabItem, but then they'll be sprinkled throughout my app.
As you've likely figured out, I'm not the best at working with styles, but what I'd like to know is how to include those without their impacting anything else.
Thanks in advance!