Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
namespace OverrideStyles
{
    /// <summary>
    /// Interaction logic for App.xaml
    /// </summary>
    public partial class App : Application
    {
        protected override void OnStartup(StartupEventArgs e)
        {
            // Create style forwarders
            Catel.Windows.Helpers.StyleHelper.CreateStyleForwardersForDefaultStyles();
 
            // Call base
            base.OnStartup(e);
        }
    }
}