Unplanned
Last Updated: 23 May 2025 10:31 by Martin Ivanov
Martin Ivanov
Created on: 23 May 2025 10:31
Category: UI for WPF
Type: Bug Report
0
Licensing: The missing or invalid license dialog and watermark are shown even when a valid license key is installed in an addin project

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();
}

0 comments