Glossary Item Box
Since styling is such an important task in application development, the NetAdvantage for WPF controls all include built-in themes you can use for styling. In addition, NetAdvantage for WPF controls also have separate ThemePacks that are included in the installer. ThemePacks are simply compiled assemblies; which removes the complication of referencing one in your project.
Follow these steps to reference a ThemePack in your project.
In XAML:
xmlns:igThemesLipStick="http://infragistics.com/Themes/Lipstick"
In XAML:
<Page.Resources>
<ResourceDictionary>
...
</ResourceDictionary>
</Page.Resources>
In XAML:
<Page.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
...
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Page.Resources>
In XAML:
<Page.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<!--Styles all controls using the LipStick ThemePack-->
<igThemesLipStick:DataPresenter />
<igThemesLipStick:Primitives />
<igThemesLipStick:Editors />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Page.Resources>
