The purchase option is enabled now.After purchasing the Rich Media Extensions you will receive a license key file.
Steps to unlock your the evaluation version with your license key file:- Embed the file MFRichMediaExtensionsLicenseKey.txt into your application
as a resource. (The plain text file will result in a string resource). - Unlock the following line in the Main method of the Program class in the
file program.cs:
LicenseManager.SetLicenseKey(Resources.GetStringResources.StringResources.MFRichMediaExtensionsLicenseKey);
It then should look like:
public static void Main()
{
...
ThemeResources.CurrentTheme = new DarkBlueTheme();
// In order to activate the full version of the Rich Media Extensions,
// embed your license key file MFRichMediaExtensionsLicenseKey.txt as a
resource and
// uncomment the following line.
LicenseManager.SetLicenseKey(Resources.GetString(Resources.StringResources.MFRichMediaExtensionsLicenseKey));
PageWindow mainWindow = new Window1();
...
}