App.xaml 782 B

1234567891011121314
  1. <prism:PrismApplication x:Class="LocalhostMES.App"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:prism="http://prismlibrary.com/"
  5. xmlns:conv="clr-namespace:LocalhostMES.Converters">
  6. <Application.Resources>
  7. <ResourceDictionary>
  8. <ResourceDictionary.MergedDictionaries>
  9. <ResourceDictionary Source="pack://application:,,,/Views/Resources/MesTabStyles.xaml" />
  10. </ResourceDictionary.MergedDictionaries>
  11. <conv:ResultColorConverter x:Key="ResultColorConverter" />
  12. </ResourceDictionary>
  13. </Application.Resources>
  14. </prism:PrismApplication>