-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.xaml.cs
More file actions
56 lines (52 loc) · 1.86 KB
/
App.xaml.cs
File metadata and controls
56 lines (52 loc) · 1.86 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
44
45
46
47
48
49
50
51
52
53
54
55
56
#region Copyright Syncfusion Inc. 2001-2015.
// Copyright Syncfusion Inc. 2001-2015. All rights reserved.
// Use of this code is subject to the terms of our license.
// A copy of the current license can be obtained at any time by e-mailing
// licensing@syncfusion.com. Any infringement will be prosecuted under
// applicable laws.
#endregion
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
//using Syncfusion.Licensing;
namespace LocalizationDemo
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
{
public App()
{
//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;
}
}
}