The dialog and the watermark stating that no license is found are displayed, even when the license key is installed properly. This happens in addin projects, like Excel VSTO Add-in.
To workaround this use the TelerikLicensing.Register method to install your license script key.
public MyWpfUserControl()
{
TelerikLicensing.Register("your-script-key");
InitializeComponent();
}
We will proceed with closing this item as our official recommedation is to invoke the TelerikLicensing.Register method in such scenarios. Since the 1.6.7 version of the Telerik.Licensing NuGet we recommend invoking the Register method without a parameter like so:
public MyWPFUserControl()
{
TelerikLicensing.Register();
InitializeComponent();
}
You can also find more information in the following article: Telerik License Not Found Dialog Shown When UI for WPF Used in Addin Project.
Regards,
Vladimir Stoyanov
Progress Telerik
Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.
Hello Axel,
You can do it once per run of the corresponding addin.
Regards,
Martin Ivanov
Progress Telerik
Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.