-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathApp.xaml.cs
More file actions
43 lines (38 loc) · 1.34 KB
/
App.xaml.cs
File metadata and controls
43 lines (38 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
using System.IO;
using System.Reflection;
using System.Text;
using System.Windows;
namespace AppearanceCustomization
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
{
public App()
{
Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense(FindLicenseKey());
}
/// <summary>
/// Helper method to find a syncfusion license key from the Common folder
/// </summary>
/// <returns></returns>
public static string FindLicenseKey()
{
int levelsToCheck = 12;
string filePath = @"Common\SyncfusionLicense.txt";
string rootPath = System.IO.Path.GetDirectoryName(Assembly.GetEntryAssembly().CodeBase.Replace(@"file:///", ""));
for (int n = 0; n < levelsToCheck; n++)
{
string fileDataPath = System.IO.Path.Combine(rootPath, filePath);
if (System.IO.File.Exists(fileDataPath))
return File.ReadAllText(fileDataPath, Encoding.UTF8);
DirectoryInfo rootDirectory = Directory.GetParent(rootPath);
if (rootDirectory == null)
break;
rootPath = rootDirectory.FullName;
}
return string.Empty;
}
}
}