Avalonia UI components for license-management.com end-user SDK. Provides ready-to-use Window and UserControl components, view models, and converters for license registration and management workflows.
Important
Account Required: This library requires a publisher account at license-management.com.
Free with Dev Subscription: A developer subscription is available at no cost, which provides full access to all features for development and testing purposes.
- Cross-platform: Works on Windows, macOS, and Linux
- Modern UI: Clean, modern design with Fluent theme
- Embeddable: Use
LicenseControlUserControl in your existing app - Standalone: Use
LicenseWindowfor a complete license management window - Full functionality: Register, unregister, and renew licenses
dotnet add package LicenseManagement.EndUser.AvaloniaShow a license management window from anywhere in your app:
using LicenseManagement.EndUser.Avalonia.Views;
// Create and show the license window
var licenseWindow = LicenseWindow.Create(
vendorId: "VND_01ABCDEF...",
productId: "PRD_01ABCDEF...",
apiKey: "your-api-key",
publicKey: "<RSAKeyValue>...</RSAKeyValue>",
validDays: 30
);
await licenseWindow.ShowDialog(parentWindow);Add the license control directly to your AXAML:
<Window xmlns="https://github.com/avaloniaui"
xmlns:license="clr-namespace:LicenseManagement.EndUser.Avalonia.Views;assembly=LicenseManagement.EndUser.Avalonia">
<license:LicenseControl x:Name="LicenseControl" />
</Window>Initialize in code-behind:
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
LicenseControl.Initialize(
vendorId: "VND_01ABCDEF...",
productId: "PRD_01ABCDEF...",
apiKey: "your-api-key",
publicKey: "<RSAKeyValue>...</RSAKeyValue>",
validDays: 30
);
}
}Check the license status to enable/disable features:
using LicenseManagement.EndUser.License;
var license = LicenseControl.License;
switch (license?.Status)
{
case LicenseStatusTitles.Valid:
// Full access - license is valid and paid
EnableAllFeatures();
break;
case LicenseStatusTitles.ValidTrial:
// Trial mode - show limited features or trial banner
EnableTrialFeatures();
ShowTrialBanner(license.TrialExpires);
break;
case LicenseStatusTitles.InvalidTrial:
case LicenseStatusTitles.Expired:
case LicenseStatusTitles.ReceiptExpired:
case LicenseStatusTitles.ReceiptUnregistered:
// No valid license - prompt user to register
DisableFeatures();
ShowRegistrationPrompt();
break;
}Trial period length is controlled by the server and embedded in the license file as
TrialEndDate. If a trial is extended in the dashboard, the updatedTrialEndDatewill appear after the client refreshes the license file.
- .NET 8.0 or later
- Avalonia 11.2+
See the samples/AvaloniaSampleApp directory for a complete working example.
- LicenseManagement.Client - Server-side SDK for managing licenses
- LicenseManagement.EndUser.Wpf - WPF version of this package
For complete API documentation, visit license-management.com/docs.
MIT License - see LICENSE file for details.