I have created a custom control library.
In project folder, i have two folders: themes and styles.
In themes folder have 2 files: generic.xaml and newwnd.xaml
In styles folder have some files(colors, control's style,etc...)
In generic.xaml i merged all xaml files
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"><ResourceDictionary.MergedDictionaries><ResourceDictionary Source="pack://application:,,,/ModernUI.Controls;component/Styles/Controls.Text_Block.xaml" /><ResourceDictionary Source="/ModernUI.Controls;component/Themes/ModernUI.Windows.xaml" /></ResourceDictionary.MergedDictionaries></ResourceDictionary>
But files in styles folder are not working. When i use above code in the client app, its working.
What am I wrong or did I miss some thing?
Thanks