Greetings,
I am currently working on a project that then is reused in other projects. We use the ThemeManager and set the CurrentTheme in the App.xml.cs to whatever theme we wish. Our controls then have the property theme set to Current theme. From what I have read this is the way to go to set Infragistics themes at application level.
One of the projects we are working with would like to create a Custom Theme and use it in the same way. But I don't know if it is possible and how to do it. Their themes are the same than the default ones but with some changes for specific controls. They a project resourvces with a folder Themes and then a folder for the IG, Metro and Office2010Blue modified themes. In there they have a bunch of xaml files for the different controls and Styles (Colors.xaml, Metro.xamDataTree.xaml, Styles.WPF.xaml, etc)
In this post John Doe posted a link on how to create Custom themes but it is broken. And have seen other posters related with themes, but do not seem to be what I need (like the utility to wash the themes).
I would like to know what are the steps we should take in order to make use of these themes with the ThemeManager.CurrentTheme property.
Thanks!
Hi Dzyann,
All a theme really is, is a collection of styles that define how the different parts of the controls look. Knowing this it's relatively simple to register your own themes with the ThemeManager for use with the CurrentTheme property. The ThemeManager has a Register method that you can use to create a theme tied to a resource dictionary. http://help.infragistics.com/Help/NetAdvantage/WPF/2013.1/CLR4.0/html/InfragisticsWPF4.v13.1~Infragistics.Windows.Themes.ThemeManager~Register%28String,String,ResourceDictionary%29.html
John Doe's link is broken because it references documentation from 2009 which is no longer available on the web. The updated link should be: http://help.infragistics.com/NetAdvantage/WPF/2013.1/CLR4.0/?page=WPF_Creating_a_ThemePack.html
Hi Rob,
I have been working trying to use the Register method but i believe is not working. First I have a doubt about what is the Groouping parameter. I don't know what I am supposed to put there.
I have a bunch of xamls files, I add them all at run time to a ResourceDictionary and register it with the ThemeManager, but it doesnt work. I have buttons to switch between styles whenever I select one of the built in Themes works fine, but I select one of mine and it just goes back to the default (which I believe is the IGTheme).
Any help you can give me would be greatly appreciated!
So i kept working and trying different things, debugging I could find a collection that shows groups. I don't understand how the whole grouping concept works.
I set "Ribbon" as the group, and my sample worked. It applies the changes to just about everything, even the DockManager and other controls. Why is that? Why the Ribbon group seems to apply changes to so many different controls? What controls do not change when the Ribbon is the group?
What is the group that covers everything? I am setting a theme so all my controls change with the theme, I wouldnt like to have some controls not changing because they don't belong to a group.
What would be the most generic group? "Primitives"?
Groupings are used to determine which controls actually use the registered theme. If, for example, you have a XamRibbon, XamDataGrid and XamDockManager on the screen and you registered a theme for the "DockManager" group, when you set the current theme it's only going to apply the theme to the dock manager. Even if your resource dictionary has styles for the ribbon and XamDataGrid, only the XamDockManager is actually going to accept the theme.
So let's say that you want to create a theme that targets multiple controls. To do this you need to register the theme multiple times for each grouping that you want included.
ThemeManager.Register("MyTheme", "Ribbon", dictionary); ThemeManager.Register("MyTheme", "DockManager", dictionary); ThemeManager.Register("MyTheme", "DataPresenter", dictionary);
I've attached a sample that demonstrates this. The samples shows how the themes can be targeted at specific controls and how they can be applied to all controls.
Thanks Rob, your sample works like a charm. However when i do the same in the solution I am working on, when I add a theme for say the "Ribbon" grouping it actually applies changes to everything, not only the ribbon. Which is rather confusing, because i have tried reproducing the same in your example and I couldnt make it.
I will consider that my solution has something wrong, or there is maybe a weird bug that we are bumping into. But assuming we had the correct behavior and we wanted to apply styles to just about everything, how woudl you do it? I haven't seen any way to get all the groupings that are registered.
We have tried using the "Primitives" grouping and it seems that it applies changes to all the objects, is this correct? It would be great if that is the case.
Thanks a lot for your assistance!
You can get the groupings registered for a particular theme by using ThemeManager.GetGroupingsForTheme(). Again, this will only show you the groupings that pertain to the actual controls that you have loaded into your application.
Actually, this should meet your requirement as long as you already have the controls you are planning to use in your application. You can call the method passing in "IGTheme" and it will return a string array full of groupings. You can then iterate over the array and Register your custom theme for each of the groupings.
string[] groupings = ThemeManager.GetGroupingsForTheme("IGTheme"); foreach (string group in groupings) ThemeManager.Register("MyTheme", group, resourceDictionary);
I don't know if the Primitives group covers everything. From my tests it seems like it does but it's probably safer to use the above code.
Thanks a lot for your help!
I don't know if anyone is following this thread, so I've created a new thread for the issue here.
I know it has been a while since I asked this, but since we upgraded to Infragistics 2015.1 setting the Theme through the ThemeManager is not longer working.
For example, if at runtime we set:
ThemeManager.CurrentTheme = "Onyx";
Nothing happens. It seems like some major change on the ThemeManager has been introduced on infragistics 2015.1.
How can you change the Theme at runtime now? Also, is doing Theme="[current]" still a valid technique for setting the theme on the controls so it changes according to what the ThemeManager is using?
Thank you!
You're very welcome. Let me know if you have any further questions on this matter.