using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows; namespace Wox.Core.UI { /// /// Object implement this interface will have the ability to has its own UI styles /// interface IUIResource { ResourceDictionary GetResourceDictionary(); } }