add missing intialization of bgw

This commit is contained in:
Pilzinsel64
2025-07-24 08:10:59 +02:00
parent c21cbe7299
commit b0e32dffaf
2 changed files with 2 additions and 2 deletions

View File

@@ -14,7 +14,7 @@ public partial class RadFlyoutBase : UserControl
protected TableLayoutPanel tableLayoutPanel_ActionPanel; protected TableLayoutPanel tableLayoutPanel_ActionPanel;
protected TableLayoutPanel tableLayoutPanel_TitlePanel; protected TableLayoutPanel tableLayoutPanel_TitlePanel;
protected RadLabel radLabel_Title; protected RadLabel radLabel_Title;
protected BackgroundWorker bgWorker_LoadData; protected readonly BackgroundWorker bgWorker_LoadData = new();
public static RadSvgImage? CancelSvg { get; set; } = null; public static RadSvgImage? CancelSvg { get; set; } = null;
public static RadSvgImage? ConfirmSvg { get; set; } = null; public static RadSvgImage? ConfirmSvg { get; set; } = null;

View File

@@ -9,7 +9,7 @@
</PropertyGroup> </PropertyGroup>
<PropertyGroup> <PropertyGroup>
<Version>2.13.1</Version> <Version>2.13.2</Version>
<GenerateDocumentationFile>True</GenerateDocumentationFile> <GenerateDocumentationFile>True</GenerateDocumentationFile>
</PropertyGroup> </PropertyGroup>