diff --git a/pkg/Microsoft.Dotnet.WinForms.ProjectTemplates/content/WinFormsApplication-CSharp/Form1.resx b/pkg/Microsoft.Dotnet.WinForms.ProjectTemplates/content/WinFormsApplication-CSharp/Form1.resx
index 1af7de150c9..667ea1506c8 100644
--- a/pkg/Microsoft.Dotnet.WinForms.ProjectTemplates/content/WinFormsApplication-CSharp/Form1.resx
+++ b/pkg/Microsoft.Dotnet.WinForms.ProjectTemplates/content/WinFormsApplication-CSharp/Form1.resx
@@ -1,64 +1,5 @@
-
@@ -117,4 +58,4 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
\ No newline at end of file
+
diff --git a/pkg/Microsoft.Dotnet.WinForms.ProjectTemplates/content/WinFormsApplication-VisualBasic/Form1.resx b/pkg/Microsoft.Dotnet.WinForms.ProjectTemplates/content/WinFormsApplication-VisualBasic/Form1.resx
index 1af7de150c9..667ea1506c8 100644
--- a/pkg/Microsoft.Dotnet.WinForms.ProjectTemplates/content/WinFormsApplication-VisualBasic/Form1.resx
+++ b/pkg/Microsoft.Dotnet.WinForms.ProjectTemplates/content/WinFormsApplication-VisualBasic/Form1.resx
@@ -1,64 +1,5 @@
-
@@ -117,4 +58,4 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
\ No newline at end of file
+
diff --git a/src/System.Windows.Forms.Design.Editors/src/Misc/ConfigurationOptions.cs b/src/System.Windows.Forms.Design.Editors/src/Misc/ConfigurationOptions.cs
index e1d7f09c28f..07c634875e1 100644
--- a/src/System.Windows.Forms.Design.Editors/src/Misc/ConfigurationOptions.cs
+++ b/src/System.Windows.Forms.Design.Editors/src/Misc/ConfigurationOptions.cs
@@ -68,7 +68,7 @@ public static Version NetFrameworkVersion
}
catch (Exception e)
{
- Debug.WriteLine("Exception while reading Framework version : " + e.ToString());
+ Debug.WriteLine("Exception while reading .NET version : " + e.ToString());
}
}
diff --git a/src/System.Windows.Forms.Design.Editors/src/Misc/DpiHelper.cs b/src/System.Windows.Forms.Design.Editors/src/Misc/DpiHelper.cs
index 063ece29512..7545718ebe8 100644
--- a/src/System.Windows.Forms.Design.Editors/src/Misc/DpiHelper.cs
+++ b/src/System.Windows.Forms.Design.Editors/src/Misc/DpiHelper.cs
@@ -2,20 +2,11 @@
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
-using System.Configuration;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Runtime.InteropServices;
-
-#if DRAWING_DESIGN_NAMESPACE
-using System.Windows.Forms.Internal;
-using CAPS = System.Windows.Forms.NativeMethods;
-#elif DRAWING_NAMESPACE
-using CAPS = System.Drawing.SafeNativeMethods;
-#else
using System.Windows.Forms.Design;
using CAPS = System.Windows.Forms.Design.NativeMethods;
-#endif
namespace System.Windows.Forms
{
@@ -32,27 +23,8 @@ internal static partial class DpiHelper
///
private static double deviceDpi = LogicalDpi;
private static double logicalToDeviceUnitsScalingFactor = 0.0;
- private static bool enableHighDpi = false;
- private static string dpiAwarenessValue = null;
private static InterpolationMode interpolationMode = InterpolationMode.Invalid;
- // Following quirks are not used in System.Drawing. Making sure they light up only in the required binaries.
-#if (!DRAWING_NAMESPACE)
- private static bool isDpiHelperQuirksInitialized = false;
- private static bool enableToolStripHighDpiImprovements = false;
- private static bool enableDpiChangedMessageHandling = false;
- private static bool enableCheckedListBoxHighDpiImprovements = false;
- private static bool enableThreadExceptionDialogHighDpiImprovements = false;
- private static bool enableDataGridViewControlHighDpiImprovements = false;
- private static bool enableSinglePassScalingOfDpiForms = false;
- private static bool enableAnchorLayoutHighDpiImprovements = false;
- private static bool enableMonthCalendarHighDpiImprovements = false;
-
- // 'enableDpiChangedHighDpiImprovements' flag default behaviour is different from the flags defined above.
- // Explicit opt-in is required if application is not targetting the minimum required framework version.
- private static bool enableDpiChangedHighDpiImprovements = false;
- private static readonly Version dpiChangedMessageHighDpiImprovementsMinimumFrameworkVersion = new Version(4, 8);
-#endif
private static void Initialize()
{
if (isInitialized)
@@ -60,321 +32,15 @@ private static void Initialize()
return;
}
- if (IsDpiAwarenessValueSet())
- {
- enableHighDpi = true;
- }
- else
- {
- try
- {
- // For legacy users who define this constant in app settings. But we read it only when we do not see a valid dpiawareness value in the winforms section
- string value = ConfigurationManager.AppSettings.Get(ConfigurationStringConstants.EnableWindowsFormsHighDpiAutoResizingKeyName);
- if (!string.IsNullOrEmpty(value) && string.Equals(value, "true", StringComparison.InvariantCultureIgnoreCase))
- {
- enableHighDpi = true;
- }
- }
- catch
- {
- }
- }
-
- if (enableHighDpi)
- {
-#if DRAWING_DESIGN_NAMESPACE
- try
- {
- if (!DpiHelper.SetWinformsApplicationDpiAwareness())
- {
- System.Diagnostics.Debug.WriteLine("Failed to set Application DPI awareness");
- }
- }
- catch (Exception ex)
- {
- System.Diagnostics.Debug.WriteLine("Failed to set Application DPI awareness " + ex.ToString());
- }
-#endif
-
- IntPtr hDC = UnsafeNativeMethods.GetDC(NativeMethods.NullHandleRef);
- if (hDC != IntPtr.Zero)
- {
- deviceDpi = UnsafeNativeMethods.GetDeviceCaps(new HandleRef(null, hDC), CAPS.LOGPIXELSX);
-
- UnsafeNativeMethods.ReleaseDC(NativeMethods.NullHandleRef, new HandleRef(null, hDC));
- }
- }
- isInitialized = true;
- }
-
- internal static bool IsDpiAwarenessValueSet()
- {
- bool dpiAwarenessValueSet = false;
- try
- {
- if (string.IsNullOrEmpty(dpiAwarenessValue))
- {
- dpiAwarenessValue = ConfigurationOptions.GetConfigSettingValue(ConfigurationStringConstants.DpiAwarenessKeyName);
- }
- }
- catch
- {
- }
-
- string dpiAwareness = (dpiAwarenessValue ?? string.Empty).ToLowerInvariant();
- switch (dpiAwareness)
- {
- case "true":
- case "system":
- case "true/pm":
- case "permonitor":
- case "permonitorv2":
- dpiAwarenessValueSet = true;
- break;
- case "false":
- System.Diagnostics.Debug.WriteLine(" 'DpiAwarenessValue' is set to 'false', value = " + dpiAwareness.ToString());
- break;
- default:
- System.Diagnostics.Debug.WriteLine("Either 'DpiAwarenessValue' is not set or 'DpiAwarenessValue' set is invalid in app.config, value set = " + dpiAwareness.ToString());
- break;
- }
- return dpiAwarenessValueSet;
- }
-
- // Following quirks and public properties are not used in System.Drawing. Making sure they light up only in the required binaries.
-#if (!DRAWING_NAMESPACE)
- internal static void InitializeDpiHelperForWinforms()
- {
- // initialize shared fields
- Initialize();
- InitializeDpiHelperQuirks();
- }
-
- internal static void InitializeDpiHelperQuirks()
- {
- if (isDpiHelperQuirksInitialized)
- {
- return;
- }
- try
- {
- // Redstone 2 or greater, where all APIs required by this feature are available
- if ((Environment.OSVersion.Version.CompareTo(ConfigurationOptions.RS2Version) >= 0) &&
- (IsExpectedConfigValue(ConfigurationStringConstants.DisableDpiChangedMessageHandlingKeyName, false)) &&
- (IsDpiAwarenessValueSet()) &&
- // The dynamic scaling features are implemented only in comclt32 v6, no point to
- // activate it otherwise.
- (Application.RenderWithVisualStyles))
- {
- // user had not opted out from dynamic scaling level changes but the primary screen DPI might be 96
- enableDpiChangedMessageHandling = true;
- }
-
- // IsScalingRequired returns true if the current resolution is not 96DPI on the primary monitor.
- // However PerMonitor DPI aware applicaitons need dynamic scaling initialized properly even if the
- // the current DPI is 96 because they handle DPI change.
- if ((DpiHelper.IsScalingRequired || enableDpiChangedMessageHandling) && IsDpiAwarenessValueSet())
- {
- if (IsExpectedConfigValue(ConfigurationStringConstants.CheckedListBoxDisableHighDpiImprovementsKeyName, false))
- {
- enableCheckedListBoxHighDpiImprovements = true;
- }
-
- if (IsExpectedConfigValue(ConfigurationStringConstants.ToolStripDisableHighDpiImprovementsKeyName, false))
- {
- enableToolStripHighDpiImprovements = true;
- }
-
- if (IsExpectedConfigValue(ConfigurationStringConstants.FormDisableSinglePassScalingOfDpiFormsKeyName, false))
- {
- enableSinglePassScalingOfDpiForms = true;
- }
-
- if (IsExpectedConfigValue(ConfigurationStringConstants.DataGridViewControlDisableHighDpiImprovements, false))
- {
- enableDataGridViewControlHighDpiImprovements = true;
- }
-
- if (IsExpectedConfigValue(ConfigurationStringConstants.AnchorLayoutDisableHighDpiImprovementsKeyName, false))
- {
- enableAnchorLayoutHighDpiImprovements = true;
- }
-
- if (IsExpectedConfigValue(ConfigurationStringConstants.MonthCalendarDisableHighDpiImprovementsKeyName, false))
- {
- enableMonthCalendarHighDpiImprovements = true;
- }
-
- if (ConfigurationOptions.GetConfigSettingValue(ConfigurationStringConstants.DisableDpiChangedHighDpiImprovementsKeyName) == null)
- {
- if (ConfigurationOptions.NetFrameworkVersion.CompareTo(dpiChangedMessageHighDpiImprovementsMinimumFrameworkVersion) >= 0)
- {
- enableDpiChangedHighDpiImprovements = true;
- }
- }
- else
- {
- if (IsExpectedConfigValue(ConfigurationStringConstants.DisableDpiChangedHighDpiImprovementsKeyName, false))
- {
- enableDpiChangedHighDpiImprovements = true;
- }
- }
-
- // no opt-out switch at the moment
- enableThreadExceptionDialogHighDpiImprovements = true;
- }
- }
- catch
- {
- }
-
- isDpiHelperQuirksInitialized = true;
- }
-
- ///
- /// Checks if configuration setting is set to expected value
- ///
- /// Configuration setting name
- /// Expected value
- /// true/false
- internal static bool IsExpectedConfigValue(string configurationSettingName, bool expectedValue)
- {
- string value = ConfigurationOptions.GetConfigSettingValue(configurationSettingName);
- if (!bool.TryParse(value, out bool valueAsBool))
- {
- // neither 'true' nor 'false' - implies 'false'
- valueAsBool = false;
- }
-
- return valueAsBool == expectedValue;
- }
-
- ///
- /// Returns a boolean to specify if we should enable HighDPI improvements added in .NET 4.8
- ///
- internal static bool EnableDpiChangedHighDpiImprovements
- {
- get
- {
- InitializeDpiHelperForWinforms();
- return enableDpiChangedHighDpiImprovements;
- }
- }
-
- ///
- /// Returns a boolean to specify if we should enable ToolStrip HighDPI fixes.
- ///
- internal static bool EnableToolStripHighDpiImprovements
- {
- get
- {
- InitializeDpiHelperForWinforms();
- return enableToolStripHighDpiImprovements;
- }
- }
-
- ///
- /// Returns a boolean to specify if we should enable processing of WM_DPICHANGED and related messages
- ///
- internal static bool EnableDpiChangedMessageHandling
- {
- get
- {
- InitializeDpiHelperForWinforms();
- if (enableDpiChangedMessageHandling)
- {
- // We can't cache this value because different top level windows can have different DPI awareness context
- // for mixed mode applications.
- DpiAwarenessContext dpiAwareness = CommonUnsafeNativeMethods.GetThreadDpiAwarenessContext();
- return CommonUnsafeNativeMethods.TryFindDpiAwarenessContextsEqual(dpiAwareness, DpiAwarenessContext.DPI_AWARENESS_CONTEXT_PER_MONITOR_AWARE_V2);
- }
- else
- {
- return false;
- }
- }
- }
-
- ///
- /// Returns a boolean to specify if we should enable all high Dpi improvements.
- ///
- internal static bool EnableCheckedListBoxHighDpiImprovements
- {
- get
- {
- InitializeDpiHelperForWinforms();
- return enableCheckedListBoxHighDpiImprovements;
- }
- }
-
- ///
- /// Returns a boolean to specify if we should enable single-pass scaling of controls.
- ///
- internal static bool EnableSinglePassScalingOfDpiForms
- {
- get
- {
- InitializeDpiHelperForWinforms();
- return enableSinglePassScalingOfDpiForms;
- }
- }
-
- ///
- /// Returns a boolean to specify if we should enable ThreadExceptionDialog HighDPI fixes.
- ///
- internal static bool EnableThreadExceptionDialogHighDpiImprovements
- {
- get
- {
- InitializeDpiHelperForWinforms();
- return enableThreadExceptionDialogHighDpiImprovements;
- }
- }
-
- ///
- /// Returns a boolean to specify if we should enable DataGridViewControl High Dpi improvements
- ///
- internal static bool EnableDataGridViewControlHighDpiImprovements
- {
- get
- {
- InitializeDpiHelperForWinforms();
- return enableDataGridViewControlHighDpiImprovements;
- }
- }
-
- ///
- /// Returns a boolean to specify if we should enable Control Anchor HighDPI fixes
- ///
- internal static bool EnableAnchorLayoutHighDpiImprovements
- {
- get
+ IntPtr hDC = UnsafeNativeMethods.GetDC(NativeMethods.NullHandleRef);
+ if (hDC != IntPtr.Zero)
{
- InitializeDpiHelperForWinforms();
- return enableAnchorLayoutHighDpiImprovements;
- }
- }
+ deviceDpi = UnsafeNativeMethods.GetDeviceCaps(new HandleRef(null, hDC), CAPS.LOGPIXELSX);
- ///
- /// Returns a boolean to specify if we should enable MonthCalendar HighDPI fixes
- ///
- internal static bool EnableMonthCalendarHighDpiImprovements
- {
- get
- {
- InitializeDpiHelperForWinforms();
- return enableMonthCalendarHighDpiImprovements;
+ UnsafeNativeMethods.ReleaseDC(NativeMethods.NullHandleRef, new HandleRef(null, hDC));
}
- }
-#endif
- internal static int DeviceDpi
- {
- get
- {
- Initialize();
- return (int)deviceDpi;
- }
+ isInitialized = true;
}
private static double LogicalToDeviceUnitsScalingFactor
@@ -515,44 +181,6 @@ public static Size LogicalToDeviceUnits(Size logicalSize, int deviceDpi = 0)
LogicalToDeviceUnits(logicalSize.Height, deviceDpi));
}
- ///
- /// Create and return a new bitmap scaled to the specified size.
- ///
- /// The image to scale from logical units to device units
- /// The size to scale image to
- public static Bitmap CreateResizedBitmap(Bitmap logicalImage, Size targetImageSize)
- {
- if (logicalImage == null)
- {
- return null;
- }
-
- return ScaleBitmapToSize(logicalImage, targetImageSize);
- }
-
- ///
- /// Create a new bitmap scaled for the device units.
- /// When displayed on the device, the scaled image will have same size as the original image would have when displayed at 96dpi.
- ///
- /// The image to scale from logical units to device units
- public static void ScaleBitmapLogicalToDevice(ref Bitmap logicalBitmap, int deviceDpi = 0)
- {
- if (logicalBitmap == null)
- {
- return;
- }
- Bitmap deviceBitmap = CreateScaledBitmap(logicalBitmap, deviceDpi);
- if (deviceBitmap != null)
- {
- logicalBitmap.Dispose();
- logicalBitmap = deviceBitmap;
- }
- }
-
- // This method is used only in System.Design, thus excluding the rest.
- // This is particularly important for System.Drawing, which should not depend
- // on System.Windows.Forms assembly, where "Button" type is defined.
-#if (!DRAWING_NAMESPACE && !DRAWING_DESIGN_NAMESPACE)
///
/// Create a new button bitmap scaled for the device units.
/// Note: original image might be disposed.
@@ -572,8 +200,6 @@ public static void ScaleButtonImageLogicalToDevice(Button button)
button.Image.Dispose();
button.Image = deviceBitmap;
}
-#endif
-
}
internal enum DpiAwarenessContext
diff --git a/src/System.Windows.Forms.Design.Editors/src/Resources/BorderSidesEditor.resx b/src/System.Windows.Forms.Design.Editors/src/Resources/BorderSidesEditor.resx
index b86f4ea7386..ea2b1e1adb4 100644
--- a/src/System.Windows.Forms.Design.Editors/src/Resources/BorderSidesEditor.resx
+++ b/src/System.Windows.Forms.Design.Editors/src/Resources/BorderSidesEditor.resx
@@ -1,64 +1,5 @@
-
+
-
@@ -342,4 +283,4 @@
System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
\ No newline at end of file
+
diff --git a/src/System.Windows.Forms.Design.Editors/src/Resources/SR.resx b/src/System.Windows.Forms.Design.Editors/src/Resources/SR.resx
index 00bb5184466..41b755dc337 100644
--- a/src/System.Windows.Forms.Design.Editors/src/Resources/SR.resx
+++ b/src/System.Windows.Forms.Design.Editors/src/Resources/SR.resx
@@ -1,64 +1,5 @@
-
diff --git a/src/System.Windows.Forms.Design.Editors/src/Resources/ShortcutKeysEditor.resx b/src/System.Windows.Forms.Design.Editors/src/Resources/ShortcutKeysEditor.resx
index ee44e38379f..1af3c7a90f5 100644
--- a/src/System.Windows.Forms.Design.Editors/src/Resources/ShortcutKeysEditor.resx
+++ b/src/System.Windows.Forms.Design.Editors/src/Resources/ShortcutKeysEditor.resx
@@ -1,63 +1,5 @@
-
diff --git a/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs b/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs
index 1b9433c8c30..c390c1c9e4c 100644
--- a/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs
+++ b/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs
@@ -77,22 +77,22 @@ public interface IToolboxService
ToolboxItem GetSelectedToolboxItem(IDesignerHost host);
///
- /// Gets all .NET Framework tools on the toolbox.
+ /// Gets all .NET tools on the toolbox.
///
ToolboxItemCollection GetToolboxItems();
///
- /// Gets all .NET Framework tools on the toolbox.
+ /// Gets all .NET tools on the toolbox.
///
ToolboxItemCollection GetToolboxItems(IDesignerHost host);
///
- /// Gets all .NET Framework tools on the toolbox fopr specific category.
+ /// Gets all .NET tools on the toolbox fopr specific category.
///
ToolboxItemCollection GetToolboxItems(string category);
///
- /// Gets all .NET Framework tools on the toolbox for specific category.
+ /// Gets all .NET tools on the toolbox for specific category.
///
ToolboxItemCollection GetToolboxItems(string category, IDesignerHost host);
diff --git a/src/System.Windows.Forms/src/Resources/SR.resx b/src/System.Windows.Forms/src/Resources/SR.resx
index 4a503bc59ee..6a6d06fffbe 100644
--- a/src/System.Windows.Forms/src/Resources/SR.resx
+++ b/src/System.Windows.Forms/src/Resources/SR.resx
@@ -203,7 +203,7 @@
Unknown image type.
- ActiveX control is a windowless control. The control is not supported in this version of the .NET Framework.
+ ActiveX control is a windowless control. The control is not supported in this version of the .NET.Complex DataBinding accepts as a data source either an IList or an IListSource.
@@ -3083,7 +3083,7 @@ To replace this default dialog please handle the DataError event.
Cancel
- Microsoft .NET Framework
+ Microsoft .NET{0}
@@ -3158,14 +3158,14 @@ just-in-time (JIT) debugging instead of this dialog box.
&Quit
- Application attempted to perform an operation not allowed by the security policy. To grant this application the required permission, contact your system administrator, or use the Microsoft .NET Framework Configuration tool.
+ Application attempted to perform an operation not allowed by the security policy. To grant this application the required permission, contact your system administrator, or use the Microsoft .NET Configuration tool.
If you click Continue, the application will ignore this error and attempt to continue.
{1}.
- Application attempted to perform an operation not allowed by the security policy. To grant this application the required permission, contact your system administrator, or use the Microsoft .NET Framework Configuration tool.
+ Application attempted to perform an operation not allowed by the security policy. To grant this application the required permission, contact your system administrator, or use the Microsoft .NET Configuration tool.
If you click Continue, the application will ignore this error and attempt to continue. If you click Quit, the application will close immediately.
diff --git a/src/System.Windows.Forms/src/Resources/System/Windows/Forms/PrintPreviewDialog.resx b/src/System.Windows.Forms/src/Resources/System/Windows/Forms/PrintPreviewDialog.resx
index aece132eff9..25db5819048 100644
--- a/src/System.Windows.Forms/src/Resources/System/Windows/Forms/PrintPreviewDialog.resx
+++ b/src/System.Windows.Forms/src/Resources/System/Windows/Forms/PrintPreviewDialog.resx
@@ -1,64 +1,5 @@
-
+
-
@@ -480,4 +421,4 @@
System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
\ No newline at end of file
+
diff --git a/src/System.Windows.Forms/src/Resources/System/Windows/Forms/mdiwindowdialog.resx b/src/System.Windows.Forms/src/Resources/System/Windows/Forms/mdiwindowdialog.resx
index e09904ff146..1da697dc104 100644
--- a/src/System.Windows.Forms/src/Resources/System/Windows/Forms/mdiwindowdialog.resx
+++ b/src/System.Windows.Forms/src/Resources/System/Windows/Forms/mdiwindowdialog.resx
@@ -1,64 +1,5 @@
-
@@ -269,4 +210,4 @@
System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
\ No newline at end of file
+
diff --git a/src/System.Windows.Forms/src/Resources/xlf/SR.cs.xlf b/src/System.Windows.Forms/src/Resources/xlf/SR.cs.xlf
index 29109584f76..1a805698493 100644
--- a/src/System.Windows.Forms/src/Resources/xlf/SR.cs.xlf
+++ b/src/System.Windows.Forms/src/Resources/xlf/SR.cs.xlf
@@ -128,8 +128,8 @@
- ActiveX control is a windowless control. The control is not supported in this version of the .NET Framework.
- Ovládací prvek ActiveX je ovládací prvek bez oken. Tento ovládací prvek není v této verzi platformy .NET Framework podporován.
+ ActiveX control is a windowless control. The control is not supported in this version of the .NET.
+ Ovládací prvek ActiveX je ovládací prvek bez oken. Tento ovládací prvek není v této verzi platformy .NET podporován.
@@ -5065,8 +5065,8 @@ Chcete-li nahradit toto výchozí dialogové okno, nastavte popisovač události
- Microsoft .NET Framework
- Microsoft .NET Framework
+ Microsoft .NET
+ Microsoft .NET
@@ -5191,12 +5191,12 @@ nikoli v tomto dialogovém okně.
- Application attempted to perform an operation not allowed by the security policy. To grant this application the required permission, contact your system administrator, or use the Microsoft .NET Framework Configuration tool.
+ Application attempted to perform an operation not allowed by the security policy. To grant this application the required permission, contact your system administrator, or use the Microsoft .NET Configuration tool.
If you click Continue, the application will ignore this error and attempt to continue.
{1}.
- Aplikace se pokusila provést operaci, která není povolena zásadami zabezpečení. Chcete-li této aplikaci udělit požadované oprávnění, obraťte se na správce systému nebo použijte konfigurační nástroj rozhraní Microsoft .NET Framework.
+ Aplikace se pokusila provést operaci, která není povolena zásadami zabezpečení. Chcete-li této aplikaci udělit požadované oprávnění, obraťte se na správce systému nebo použijte konfigurační nástroj rozhraní Microsoft .NET.
Pokud kliknete na tlačítko Pokračovat, aplikace bude tuto chybu ignorovat a pokusí se pokračovat.
@@ -5204,12 +5204,12 @@ Pokud kliknete na tlačítko Pokračovat, aplikace bude tuto chybu ignorovat a p
- Application attempted to perform an operation not allowed by the security policy. To grant this application the required permission, contact your system administrator, or use the Microsoft .NET Framework Configuration tool.
+ Application attempted to perform an operation not allowed by the security policy. To grant this application the required permission, contact your system administrator, or use the Microsoft .NET Configuration tool.
If you click Continue, the application will ignore this error and attempt to continue. If you click Quit, the application will close immediately.
{1}.
- Aplikace se pokusila provést operaci, která není povolena zásadami zabezpečení. Chcete-li této aplikaci udělit požadované oprávnění, obraťte se na správce systému nebo použijte konfigurační nástroj rozhraní Microsoft .NET Framework.
+ Aplikace se pokusila provést operaci, která není povolena zásadami zabezpečení. Chcete-li této aplikaci udělit požadované oprávnění, obraťte se na správce systému nebo použijte konfigurační nástroj rozhraní Microsoft .NET.
Pokud kliknete na tlačítko Pokračovat, aplikace bude tuto chybu ignorovat a pokusí se pokračovat. Pokud kliknete na tlačítko Konec, bude aplikace okamžitě ukončena.
@@ -11698,4 +11698,4 @@ Trasování zásobníku, kde došlo k neplatné operaci: