diff --git a/Source/NETworkManager.Localization/Resources/Strings.Designer.cs b/Source/NETworkManager.Localization/Resources/Strings.Designer.cs index 0f995a8ebc..783c4482cd 100644 --- a/Source/NETworkManager.Localization/Resources/Strings.Designer.cs +++ b/Source/NETworkManager.Localization/Resources/Strings.Designer.cs @@ -6876,6 +6876,15 @@ public static string ProfileEncryptionDisclaimer { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Profile file ähnelt. + /// + public static string ProfileFile { + get { + return ResourceManager.GetString("ProfileFile", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Profile file could not be loaded! ähnelt. /// diff --git a/Source/NETworkManager.Localization/Resources/Strings.resx b/Source/NETworkManager.Localization/Resources/Strings.resx index a27f42d61b..b568f36d54 100644 --- a/Source/NETworkManager.Localization/Resources/Strings.resx +++ b/Source/NETworkManager.Localization/Resources/Strings.resx @@ -3876,4 +3876,7 @@ Right-click for more options. Donate + + Profile file + \ No newline at end of file diff --git a/Source/NETworkManager.Settings/ConfigurationInfo.cs b/Source/NETworkManager.Settings/ConfigurationInfo.cs index e93b1a4b69..491f23227f 100644 --- a/Source/NETworkManager.Settings/ConfigurationInfo.cs +++ b/Source/NETworkManager.Settings/ConfigurationInfo.cs @@ -430,6 +430,27 @@ public string ProfileManagerErrorMessage } } + /// + /// Private variable for . + /// + private bool _isChildWindowOpen; + + /// + /// Indicates if a child window is open. + /// + public bool IsChildWindowOpen + { + get => _isChildWindowOpen; + set + { + if (value == _isChildWindowOpen) + return; + + _isChildWindowOpen = value; + OnPropertyChanged(); + } + } + /// /// Private variable for . /// diff --git a/Source/NETworkManager/MainWindow.xaml b/Source/NETworkManager/MainWindow.xaml index 304799a908..8a67897a53 100644 --- a/Source/NETworkManager/MainWindow.xaml +++ b/Source/NETworkManager/MainWindow.xaml @@ -88,7 +88,7 @@ - +