Merge language and theme into resource folder

This commit is contained in:
bao-qian
2016-01-07 20:04:37 +00:00
parent 8504d01688
commit ec40956721
19 changed files with 26 additions and 33 deletions

View File

@@ -0,0 +1,26 @@
namespace Wox.Core.Resource
{
public class ThemeManager
{
private static Theme instance;
private static object syncObject = new object();
public static Theme Theme
{
get
{
if (instance == null)
{
lock (syncObject)
{
if (instance == null)
{
instance = new Theme();
}
}
}
return instance;
}
}
}
}