using Syncfusion.Windows.Shared;
using System.Windows;
using InABox.WPF.Themes;
namespace InABox.Wpf
{
    /// 
    /// Provides a window which understands the theming system and applies it automatically.
    /// 
    /// 
    /// We should use this guy for all our windows.
    /// 
    public class ThemableWindow : Window
    {
        public ThemableWindow() : base()
        {
            Background = ThemeManager.WorkspaceBackgroundBrush;
        }
    }
    /// 
    /// Provides a window which understands the theming system and applies it automatically.
    /// 
    /// 
    /// We should use this guy for all our chromeless windows.
    /// 
    public class ThemableChromelessWindow : ChromelessWindow
    {
        public ThemableChromelessWindow() : base()
        {
            Background = ThemeManager.WorkspaceBackgroundBrush;
        }
    }
}