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