"Resource Dictionary (WPF)" naming convention and managing suggestions
naming-conventions, resourcedictionary, wpf, xaml
Solution
I like to use a separate file for different resource types:
- Fonts and Font-Sizes (Fonts.xaml)
- Brushes and Colors (Brushes.xaml)
- Generic Control Styles, without keys (CoreStyles.xaml)
- Data Templates and TemplateSelectors (DataTemplates.xaml)
- Converters (Converters.xaml)
- BitmapImages for use as Image sources (Icons.xaml)
- Specific, keyed styles (Styles.xaml)
Problem
Just wanted to ask a general question regarding the naming convention people use for "Resource Dictionary (WPF)" items. In the project I inherited, I have resource dictionaries all over the place with a variety of naming conventions. Therefore, I am looking for suggestions in managing resource dictionaries in general. Please exclude the Themes folder and those resource dictionaries from any answers.