The summary below describes major new features, items of note and breaking changes. The full list of issues is also available for those with access to the Encodo issue tracker.
The method WinformStatusFeedback.CreateStatusForm()
no longer exists and cannot be overridden. If you have code that looks like the following:
public class StartupFormFeedback : WinformDxStatusFeedback
{
public StartupFormFeedback(ICoreConfiguration configuration = null)
: base(configuration)
{ }
protected override IStatusForm CreateStatusForm()
{
return new StartupForm(Configuration);
}
}
you should replace it with the following:
public class StartupFormFeedback : WinformStatusFeedback
{
public StartupFormFeedback(ICoreConfiguration configuration = null)
: base(configuration, () => new StartupForm(configuration))
{ }
}
Please note that the base class in the example was changed from WinformStatusDxFeedback
to WinformStatusFeedback
(the former no longer allows the form to be overridden).
Für Newsletter registrieren