Hello team,
I have a strange issue with LL. I have one class library project contains projectfile ,licence info etc. It creates instance of ListLabel control and sends.
This class library services to WinForm app and WPF app.
private static ListLabel CreateInstance()
=> new ListLabel
{
DrilldownAvailable = true,
EMFResolution = 100,
LockNextChar = 8288,
PhantomSpace = 8203,
Unit = LlUnits.Millimeter_1_100,
UseHardwareCopiesForLabels = false,
UseTableSchemaForDesignMode = false,
AutoMasterMode = LlAutoMasterMode.AsFields,
LicensingInfo = "xxxxx"
};
When I called the var ll=CreateInstance() it works if it calls from Winform APP
When I called the var ll=CreateInstance() it works if it calls from WPF app
When I called the var ll=CreateInstance() it does not work if it calls from a class library attached to the WPF app.
The more strange thing is no exception or other message etc.
Do you have an idea?