diff --git a/src/Common/src/CompModSwitches.cs b/src/Common/src/CompModSwitches.cs
index bf57603f201..f22eaddb3d7 100644
--- a/src/Common/src/CompModSwitches.cs
+++ b/src/Common/src/CompModSwitches.cs
@@ -39,8 +39,9 @@ internal static class CompModSwitches {
private static TraceSwitch setBounds;
private static BooleanSwitch lifetimeTracing;
-
+
private static TraceSwitch s_handleLeak;
+ private static BooleanSwitch s_traceCollect;
private static BooleanSwitch s_commonDesignerServices;
public static TraceSwitch ActiveX {
@@ -294,7 +295,7 @@ public static TraceSwitch SetBounds {
return setBounds;
}
}
- #endif
+#endif
public static TraceSwitch HandleLeak {
get {
@@ -305,16 +306,16 @@ public static TraceSwitch HandleLeak {
}
}
- private static BooleanSwitch traceCollect;
public static BooleanSwitch TraceCollect {
get {
- if (traceCollect == null) {
- traceCollect = new BooleanSwitch("TRACECOLLECT", "HandleCollector: Trace HandleCollector operations");
+ if (s_traceCollect == null) {
+ s_traceCollect = new BooleanSwitch("TRACECOLLECT", "HandleCollector: Trace HandleCollector operations");
}
- return traceCollect;
+ return s_traceCollect;
}
}
- internal static BooleanSwitch CommonDesignerServices
+
+ public static BooleanSwitch CommonDesignerServices
{
get
{
diff --git a/src/Common/src/NativeMethods.cs b/src/Common/src/NativeMethods.cs
index 44ece3695ab..01467f31169 100644
--- a/src/Common/src/NativeMethods.cs
+++ b/src/Common/src/NativeMethods.cs
@@ -1962,6 +1962,7 @@ public static bool Failed(int hr) {
WM_MBUTTONDOWN = 0x0207,
WM_MBUTTONUP = 0x0208,
WM_MBUTTONDBLCLK = 0x0209,
+ WM_NCMOUSEHOVER = 0x02A0,
WM_XBUTTONDOWN = 0x020B,
WM_XBUTTONUP = 0x020C,
WM_XBUTTONDBLCLK = 0x020D,
@@ -5701,6 +5702,8 @@ public enum MONTCALENDAR_VIEW_MODE
public const int PS_GEOMETRIC = 0x00010000;
public const int PS_ENDCAP_SQUARE = 0x00000100;
+ public const int WS_EX_TRANSPARENT = 0x00000020;
+
public const int NULL_BRUSH = 5;
public const int MM_HIMETRIC = 3;
@@ -6042,6 +6045,10 @@ public UiaRect(System.Drawing.Rectangle r) {
[DllImport(ExternDll.User32, CharSet = CharSet.Auto)]
[ResourceExposure(ResourceScope.None)]
public extern static IntPtr SendMessage(IntPtr hWnd, int Msg, int wParam, [In, Out] TV_HITTESTINFO lParam);
+
+ [DllImport(ExternDll.User32, CharSet = CharSet.Auto)]
+ [ResourceExposure(ResourceScope.None)]
+ public static extern IntPtr DefWindowProc(IntPtr hWnd, int msg, IntPtr wParam, IntPtr lParam);
[DllImport(ExternDll.User32, ExactSpelling = true, CharSet = CharSet.Auto)]
[ResourceExposure(ResourceScope.None)]
public static extern short GetKeyState(int keyCode);
@@ -6065,6 +6072,8 @@ public static bool DeleteObject(IntPtr hObject)
[DllImport(ExternDll.Gdi32, ExactSpelling = true, EntryPoint = "CreateRectRgn", CharSet = CharSet.Auto)]
[ResourceExposure(ResourceScope.Process)]
private static extern IntPtr IntCreateRectRgn(int x1, int y1, int x2, int y2);
+ [ResourceExposure(ResourceScope.Process)]
+ [ResourceConsumption(ResourceScope.Process)]
public static IntPtr CreateRectRgn(int x1, int y1, int x2, int y2)
{
return System.Internal.HandleCollector.Add(IntCreateRectRgn(x1, y1, x2, y2), CommonHandles.GDI);
diff --git a/src/Common/src/SafeNativeMethods.cs b/src/Common/src/SafeNativeMethods.cs
index ca23a08463a..bbe978c066e 100644
--- a/src/Common/src/SafeNativeMethods.cs
+++ b/src/Common/src/SafeNativeMethods.cs
@@ -476,6 +476,11 @@ public static IntPtr CopyImageAsCursor(HandleRef hImage, int uType, int cxDesire
public static extern bool ValidateRect(HandleRef hWnd, [In, Out] ref NativeMethods.RECT rect);
+
+ [DllImport(ExternDll.User32, ExactSpelling = true, CharSet = CharSet.Auto)]
+ [ResourceExposure(ResourceScope.None)]
+ public static extern bool ValidateRect(IntPtr hwnd, IntPtr prect);
+
//
// WARNING: Don't uncomment this code unless you absolutelly need it. Use instead Marshal.GetLastWin32Error
// and mark your PInvoke [DllImport(..., SetLastError=true)]
@@ -573,11 +578,12 @@ public static IntPtr CreateRectRgn(int x1, int y1, int x2, int y2) {
public static extern bool ShowWindow(HandleRef hWnd, int nCmdShow);
[DllImport(ExternDll.User32, ExactSpelling=true, CharSet=CharSet.Auto)]
- public static extern bool SetWindowPos(HandleRef hWnd, HandleRef hWndInsertAfter, int x, int y, int cx, int cy, int flags);
+ public static extern bool SetWindowPos(HandleRef hWnd, HandleRef hWndInsertAfter,
+ int x, int y, int cx, int cy, int flags);
[DllImport(ExternDll.User32, ExactSpelling = true, CharSet = CharSet.Auto)]
- [ResourceExposure(ResourceScope.None)]
- public static extern bool SetWindowPos(IntPtr hWnd, IntPtr hWndInsertAfter, int x, int y, int cx, int cy, int flags);
+ public static extern bool SetWindowPos(IntPtr hWnd, IntPtr hWndInsertAfter,
+ int x, int y, int cx, int cy, int flags);
[DllImport(ExternDll.User32, CharSet=CharSet.Auto)]
@@ -598,8 +604,8 @@ public static bool TrackMouseEvent(NativeMethods.TRACKMOUSEEVENT tme) {
public static extern bool RedrawWindow(HandleRef hwnd, NativeMethods.COMRECT rcUpdate, HandleRef hrgnUpdate, int flags);
[DllImport(ExternDll.User32, ExactSpelling = true, CharSet = CharSet.Auto)]
- [ResourceExposure(ResourceScope.None)]
public static extern bool RedrawWindow(IntPtr hwnd, NativeMethods.COMRECT rcUpdate, IntPtr hrgnUpdate, int flags);
+
[DllImport(ExternDll.User32, ExactSpelling=true, CharSet=CharSet.Auto)]
public static extern bool InvalidateRect(HandleRef hWnd, ref NativeMethods.RECT rect, bool erase);
@@ -699,7 +705,6 @@ public static extern bool BitBlt(HandleRef hDC, int x, int y, int nWidth, int nH
HandleRef hSrcDC, int xSrc, int ySrc, int dwRop);
[DllImport(ExternDll.Gdi32, ExactSpelling = true, CharSet = CharSet.Auto)]
- [ResourceExposure(ResourceScope.None)]
public static extern bool BitBlt(IntPtr hDC, int x, int y, int nWidth, int nHeight, IntPtr hSrcDC, int xSrc, int ySrc, int dwRop);
[DllImport(ExternDll.User32, ExactSpelling=true, CharSet=CharSet.Auto)]
@@ -864,6 +869,12 @@ public static extern bool BitBlt(HandleRef hDC, int x, int y, int nWidth, int nH
[DllImport(ExternDll.Kernel32, SetLastError = true)]
public static extern IntPtr OpenProcess(uint dwDesiredAccess, [MarshalAs(UnmanagedType.Bool)] bool bInheritHandle, int dwProcessId);
+ [DllImport(ExternDll.Gdi32, ExactSpelling = true, CharSet = CharSet.Auto)]
+ public static extern bool RoundRect(HandleRef hDC, int left, int top, int right, int bottom, int width, int height);
+
+ [DllImport(ExternDll.Uxtheme, CharSet = CharSet.Auto)]
+ public extern static int SetWindowTheme(IntPtr hWnd, string subAppName, string subIdList);
+
internal const int PROCESS_QUERY_INFORMATION = 0x0400;
internal const int PROCESS_VM_READ = 0x0010;
@@ -910,18 +921,6 @@ public interface IFontDisp {
short Charset {get;set;}
}
-
- [DllImport(ExternDll.Gdi32, ExactSpelling = true, CharSet = CharSet.Auto)]
- [ResourceExposure(ResourceScope.None)]
- public static extern bool RoundRect(HandleRef hDC, int left, int top, int right, int bottom, int width, int height);
-
- [DllImport(ExternDll.Gdi32, CharSet = CharSet.Auto)]
- [ResourceExposure(ResourceScope.None)]
- public static extern bool GetTextMetrics(HandleRef hdc, NativeMethods.TEXTMETRIC tm);
-
- [ResourceExposure(ResourceScope.None)]
- [DllImport(ExternDll.Uxtheme, CharSet = CharSet.Auto)]
- public extern static int SetWindowTheme(IntPtr hWnd, string subAppName, string subIdList);
}
}
diff --git a/src/Common/src/UnsafeNativeMethods.cs b/src/Common/src/UnsafeNativeMethods.cs
index 86ecfb73baa..a3ae53791eb 100644
--- a/src/Common/src/UnsafeNativeMethods.cs
+++ b/src/Common/src/UnsafeNativeMethods.cs
@@ -92,6 +92,9 @@ internal static class UnsafeNativeMethods {
public static extern int ReadClassStg(HandleRef pStg, [In, Out] ref Guid pclsid);
+ [DllImport(ExternDll.User32, ExactSpelling = true, CharSet = CharSet.Auto)]
+ public static extern int GetMessageTime();
+
[DllImport(ExternDll.Ole32, SetLastError = true, CharSet = CharSet.Auto, ExactSpelling = true)]
internal extern static void CoTaskMemFree(IntPtr pv);
@@ -198,20 +201,6 @@ internal static bool IsVista
public static extern int CoGetMalloc(int dwReserved, out IMalloc pMalloc);
- /* Commenting this out until someone actually needs to use it again...
- [DllImport(ExternDll.Ole32)]
- public static extern int OleSetMenuDescriptor(IntPtr hOleMenu, IntPtr hWndFrame, IntPtr hWndActiveObject, IOleInPlaceFrame frame, IOleInPlaceActiveObject activeObject);
- */
-
- /* Commenting this out until someone actually needs to use it again...
- [DllImport(ExternDll.Kernel32)]
- public static extern bool IsBadReadPtr(HandleRef ptr, int size);
- */
-
- [DllImport(ExternDll.User32, ExactSpelling = true, CharSet = CharSet.Auto)]
- [ResourceExposure(ResourceScope.None)]
- public static extern int GetMessageTime();
-
[DllImport(ExternDll.User32, ExactSpelling = true, CharSet = System.Runtime.InteropServices.CharSet.Auto)]
[ResourceExposure(ResourceScope.Process)]
public static extern int GetWindowThreadProcessId(HandleRef hWnd, out int lpdwProcessId);
@@ -836,7 +825,12 @@ public static int SetWindowRgn(HandleRef hwnd, HandleRef hrgn, bool fRedraw) {
[DllImport(ExternDll.User32, CharSet=CharSet.Auto)]
public static extern IntPtr SendMessage(HandleRef hWnd, int msg, int wParam, NativeMethods.LVBKIMAGE lParam);
-
+
+ [DllImport(ExternDll.User32, CharSet = System.Runtime.InteropServices.CharSet.Auto)]
+ [SuppressMessage("Microsoft.Portability", "CA1901:PInvokeDeclarationsShouldBePortable")]
+ [ResourceExposure(ResourceScope.None)]
+ public static extern IntPtr SendMessage(IntPtr hwnd, int msg, bool wparam, int lparam);
+
[DllImport(ExternDll.User32, CharSet=CharSet.Auto)]
public static extern int SendMessage(HandleRef hWnd, int msg, int wParam, ref NativeMethods.LVHITTESTINFO lParam);
@@ -1001,7 +995,11 @@ public static int SetWindowRgn(HandleRef hwnd, HandleRef hrgn, bool fRedraw) {
public static extern IntPtr GetWindow(HandleRef hWnd, int uCmd);
[DllImport(ExternDll.User32, ExactSpelling=true, CharSet=CharSet.Auto)]
-
+
+ [ResourceExposure(ResourceScope.None)]
+ public static extern IntPtr GetWindow(IntPtr hWnd, int uCmd);
+ [DllImport(ExternDll.User32, ExactSpelling = true, CharSet = CharSet.Auto)]
+
public static extern IntPtr GetDlgItem(HandleRef hWnd, int nIDDlgItem);
[DllImport(ExternDll.Kernel32, CharSet=CharSet.Auto)]
@@ -1016,17 +1014,7 @@ public static int SetWindowRgn(HandleRef hwnd, HandleRef hrgn, bool fRedraw) {
public static extern IntPtr CallWindowProc(IntPtr wndProc, IntPtr hWnd, int msg,
IntPtr wParam, IntPtr lParam);
-
-/*
- [DllImport(ExternDll.User32, CharSet=CharSet.Auto)]
- public static extern IntPtr GetProp(HandleRef hWnd, int atom);
- [DllImport(ExternDll.User32, CharSet=CharSet.Auto)]
- public static extern IntPtr GetProp(HandleRef hWnd, string name);
- [DllImport(ExternDll.User32, CharSet=CharSet.Auto)]
- public static extern IntPtr RemoveProp(HandleRef hWnd, short atom);
- [DllImport(ExternDll.User32, CharSet=CharSet.Auto)]
- public static extern IntPtr RemoveProp(HandleRef hWnd, string propName);
- */
+
[DllImport(ExternDll.Kernel32, ExactSpelling=true, CharSet=CharSet.Auto)]
public static extern short GlobalDeleteAtom(short atom);
@@ -1041,10 +1029,7 @@ public static extern IntPtr CallWindowProc(IntPtr wndProc, IntPtr hWnd, int msg,
[DllImport(ExternDll.User32, CharSet=CharSet.Auto)]
public static extern bool GetClassInfo(HandleRef hInst, string lpszClass, IntPtr h);
-/*
- [DllImport(ExternDll.Shell32, CharSet=CharSet.Auto)]
- public static extern int SHGetFolderPath(HandleRef hwndOwner, int nFolder, HandleRef hToken, int dwFlags, StringBuilder lpszPath);
-*/
+
[DllImport(ExternDll.User32, ExactSpelling=true, CharSet=CharSet.Auto)]
public static extern int GetSystemMetrics(int nIndex);
@@ -1054,6 +1039,9 @@ public static extern IntPtr CallWindowProc(IntPtr wndProc, IntPtr hWnd, int msg,
public static extern int GetSystemMetricsForDpi(int nIndex, uint dpi);
+ [DllImport(ExternDll.Gdi32, CharSet = CharSet.Auto)]
+ public static extern bool GetTextMetrics(HandleRef hdc, NativeMethods.TEXTMETRIC tm);
+
///
/// Tries to get system metrics for the dpi. dpi is ignored if "GetSystemMetricsForDpi" is not available on the OS that this application is running.
///
@@ -1143,6 +1131,10 @@ public static bool TrySystemParametersInfoForDpi(int nAction, int nParam, [In, O
[DllImport(ExternDll.Ole32, ExactSpelling=true, CharSet=CharSet.Auto)]
public static extern int RevokeDragDrop(HandleRef hwnd);
+
+ [DllImport(ExternDll.Ole32, ExactSpelling = true, CharSet = System.Runtime.InteropServices.CharSet.Auto)]
+ [ResourceExposure(ResourceScope.None)]
+ public static extern int RevokeDragDrop(IntPtr hwnd);
[DllImport(ExternDll.User32, CharSet=CharSet.Auto)]
public static extern bool PeekMessage([In, Out] ref NativeMethods.MSG msg, HandleRef hwnd, int msgMin, int msgMax, int remove);
@@ -1169,6 +1161,11 @@ public static bool TrySystemParametersInfoForDpi(int nAction, int nParam, [In, O
[DllImport(ExternDll.Oleacc, ExactSpelling=true, CharSet=CharSet.Auto)]
public static extern IntPtr LresultFromObject(ref Guid refiid, IntPtr wParam, HandleRef pAcc);
+
+ [DllImport(ExternDll.Oleacc, ExactSpelling = true, CharSet = CharSet.Auto)]
+ [ResourceExposure(ResourceScope.Process)]
+ public static extern IntPtr LresultFromObject(ref Guid refiid, IntPtr wParam, IntPtr pAcc);
+
[DllImport(ExternDll.Oleacc, ExactSpelling=true, CharSet=System.Runtime.InteropServices.CharSet.Auto)]
public static extern int CreateStdAccessibleObject(HandleRef hWnd, int objID, ref Guid refiid, [In, Out, MarshalAs(UnmanagedType.Interface)] ref object pAcc);
@@ -1193,7 +1190,11 @@ public static bool TrySystemParametersInfoForDpi(int nAction, int nParam, [In, O
public static IntPtr BeginPaint(HandleRef hWnd, [In, Out, MarshalAs(UnmanagedType.LPStruct)] ref NativeMethods.PAINTSTRUCT lpPaint) {
return System.Internal.HandleCollector.Add(IntBeginPaint(hWnd, ref lpPaint), NativeMethods.CommonHandles.HDC);
}
-
+
+ [DllImport(ExternDll.User32, ExactSpelling = true, EntryPoint = "BeginPaint", CharSet = CharSet.Auto)]
+ [ResourceExposure(ResourceScope.None)]
+ public static extern IntPtr BeginPaint(IntPtr hWnd, [In, Out] ref NativeMethods.PAINTSTRUCT lpPaint);
+
[DllImport(ExternDll.User32, ExactSpelling=true, EntryPoint="EndPaint", CharSet=CharSet.Auto)]
private static extern bool IntEndPaint(HandleRef hWnd, ref NativeMethods.PAINTSTRUCT lpPaint);
@@ -1202,6 +1203,10 @@ public static bool EndPaint(HandleRef hWnd, [In, MarshalAs(UnmanagedType.LPStruc
return IntEndPaint(hWnd, ref lpPaint);
}
+ [DllImport(ExternDll.User32, ExactSpelling = true, EntryPoint = "EndPaint", CharSet = CharSet.Auto)]
+ [ResourceExposure(ResourceScope.None)]
+ public static extern bool EndPaint(IntPtr hWnd, ref NativeMethods.PAINTSTRUCT lpPaint);
+
[DllImport(ExternDll.User32, ExactSpelling=true, EntryPoint="GetDC", CharSet=CharSet.Auto)]
private static extern IntPtr IntGetDC(HandleRef hWnd);
diff --git a/src/System.Windows.Forms.Design/src/Resources/SR.Designer.cs b/src/System.Windows.Forms.Design/src/Resources/SR.Designer.cs
index 9dc46dd2d42..0d6ba386d81 100644
--- a/src/System.Windows.Forms.Design/src/Resources/SR.Designer.cs
+++ b/src/System.Windows.Forms.Design/src/Resources/SR.Designer.cs
@@ -96,6 +96,24 @@ public static string BehaviorServiceMoveControls {
}
}
+ ///
+ /// Looks up a localized string similar to Resize {0}.
+ ///
+ public static string BehaviorServiceResizeControl {
+ get {
+ return ResourceManager.GetString("BehaviorServiceResizeControl", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Resize {0} Controls.
+ ///
+ public static string BehaviorServiceResizeControls {
+ get {
+ return ResourceManager.GetString("BehaviorServiceResizeControls", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Double cannot be converted to a date..
///
@@ -114,6 +132,33 @@ public static string CannotConvertIntToFloat {
}
}
+ ///
+ /// Looks up a localized string similar to The serialization store is closed. New objects cannot be added to a closed store..
+ ///
+ public static string CodeDomComponentSerializationServiceClosedStore {
+ get {
+ return ResourceManager.GetString("CodeDomComponentSerializationServiceClosedStore", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Complete deserialization of {0} failed..
+ ///
+ public static string CodeDomComponentSerializationServiceDeserializationError {
+ get {
+ return ResourceManager.GetString("CodeDomComponentSerializationServiceDeserializationError", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to This type of serialization store is not supported. Use a store returned by the CreateStore method..
+ ///
+ public static string CodeDomComponentSerializationServiceUnknownStore {
+ get {
+ return ResourceManager.GetString("CodeDomComponentSerializationServiceUnknownStore", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Unhandled VT: {0}..
///
@@ -160,7 +205,8 @@ public static string CommandSetDelete {
}
///
- /// Looks up a localized string similar to An error occurred while processing this command.\r\n{0}.
+ /// Looks up a localized string similar to An error occurred while processing this command.
+ /// {0}.
///
public static string CommandSetError {
get {
@@ -222,6 +268,164 @@ public static string ComponentDesignerAddEvent {
}
}
+ ///
+ /// Looks up a localized string similar to Align To &Grid.
+ ///
+ public static string ContextMenuAlignToGrid {
+ get {
+ return ResourceManager.GetString("ContextMenuAlignToGrid", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &Bring To Front.
+ ///
+ public static string ContextMenuBringToFront {
+ get {
+ return ResourceManager.GetString("ContextMenuBringToFront", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to C&opy.
+ ///
+ public static string ContextMenuCopy {
+ get {
+ return ResourceManager.GetString("ContextMenuCopy", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &Cut.
+ ///
+ public static string ContextMenuCut {
+ get {
+ return ResourceManager.GetString("ContextMenuCut", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &Delete.
+ ///
+ public static string ContextMenuDelete {
+ get {
+ return ResourceManager.GetString("ContextMenuDelete", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &Document Outline.
+ ///
+ public static string ContextMenuDocumentOutline {
+ get {
+ return ResourceManager.GetString("ContextMenuDocumentOutline", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &Lock Controls.
+ ///
+ public static string ContextMenuLockControls {
+ get {
+ return ResourceManager.GetString("ContextMenuLockControls", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &Paste.
+ ///
+ public static string ContextMenuPaste {
+ get {
+ return ResourceManager.GetString("ContextMenuPaste", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &Properties.
+ ///
+ public static string ContextMenuProperties {
+ get {
+ return ResourceManager.GetString("ContextMenuProperties", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &Select.
+ ///
+ public static string ContextMenuSelect {
+ get {
+ return ResourceManager.GetString("ContextMenuSelect", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &Send To Back.
+ ///
+ public static string ContextMenuSendToBack {
+ get {
+ return ResourceManager.GetString("ContextMenuSendToBack", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to ShowCheckMargin.
+ ///
+ public static string ContextMenuStripActionList_ShowCheckMargin {
+ get {
+ return ResourceManager.GetString("ContextMenuStripActionList_ShowCheckMargin", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Toggles the ShowCheckMargin property.
+ ///
+ public static string ContextMenuStripActionList_ShowCheckMarginDesc {
+ get {
+ return ResourceManager.GetString("ContextMenuStripActionList_ShowCheckMarginDesc", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to ShowImageMargin.
+ ///
+ public static string ContextMenuStripActionList_ShowImageMargin {
+ get {
+ return ResourceManager.GetString("ContextMenuStripActionList_ShowImageMargin", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Toggles the ShowImageMargin property.
+ ///
+ public static string ContextMenuStripActionList_ShowImageMarginDesc {
+ get {
+ return ResourceManager.GetString("ContextMenuStripActionList_ShowImageMarginDesc", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to View &Code.
+ ///
+ public static string ContextMenuViewCode {
+ get {
+ return ResourceManager.GetString("ContextMenuViewCode", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to The control {0} has thrown an unhandled exception in the designer and has been disabled.
+ ///
+ /// Exception:
+ /// {1}
+ ///
+ /// Stack trace:{2}.
+ ///
+ public static string ControlDesigner_WndProcException {
+ get {
+ return ResourceManager.GetString("ControlDesigner_WndProcException", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Could not convert value '{0}' to the type '{1}'..
///
@@ -232,7 +436,7 @@ public static string DesignerActionPanel_CouldNotConvertValue {
}
///
- /// Looks up a localized string similar to Could not find method '{0}'.
+ /// Looks up a localized string similar to Could not find method '{0}'..
///
public static string DesignerActionPanel_CouldNotFindMethod {
get {
@@ -582,6 +786,24 @@ public static string DesignerOptions_UseSnapLines {
}
}
+ ///
+ /// Looks up a localized string similar to Dock in Parent Container.
+ ///
+ public static string DesignerShortcutDockInParent {
+ get {
+ return ResourceManager.GetString("DesignerShortcutDockInParent", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Undock in Parent Container.
+ ///
+ public static string DesignerShortcutUndockInParent {
+ get {
+ return ResourceManager.GetString("DesignerShortcutUndockInParent", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to The container cannot be disposed at design time..
///
@@ -601,7 +823,9 @@ public static string DesignSurfaceDesignerNotLoaded {
}
///
- /// Looks up a localized string similar to An error occurred while loading the document. Fix the error, and then try loading the document again. The error message follows:\r\n\r\n{0}.
+ /// Looks up a localized string similar to An error occurred while loading the document. Fix the error, and then try loading the document again. The error message follows:
+ ///
+ /// {0}.
///
public static string DesignSurfaceFatalError {
get {
@@ -717,6 +941,33 @@ public static string InheritanceServiceReadOnlyCollection {
}
}
+ ///
+ /// Looks up a localized string similar to '{1}' is not a valid value for '{0}'..
+ ///
+ public static string InvalidArgument {
+ get {
+ return ResourceManager.GetString("InvalidArgument", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to '{1}' is not a valid value for '{0}'. '{0}' should be between {2} and {3}..
+ ///
+ public static string InvalidBoundArgument {
+ get {
+ return ResourceManager.GetString("InvalidBoundArgument", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to The Locked property determines if we can move or resize the control..
+ ///
+ public static string lockedDescr {
+ get {
+ return ResourceManager.GetString("lockedDescr", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to This method/object is not implemented by design..
///
@@ -745,65 +996,785 @@ public static string RTL {
}
///
- /// Looks up a localized string similar to Argument should be a non-empty string..
+ /// Looks up a localized string similar to You cannot create a new session because this serialization manager already has an active serialization session..
///
- public static string ToolboxItemInvalidKey {
+ public static string SerializationManagerAreadyInSession {
get {
- return ResourceManager.GetString("ToolboxItemInvalidKey", resourceCulture);
+ return ResourceManager.GetString("SerializationManagerAreadyInSession", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Property {0} requires an argument of type {1}..
+ /// Looks up a localized string similar to Duplicate declaration of member '{0}'.
///
- public static string ToolboxItemInvalidPropertyType {
+ public static string SerializationManagerDuplicateComponentDecl {
get {
- return ResourceManager.GetString("ToolboxItemInvalidPropertyType", resourceCulture);
+ return ResourceManager.GetString("SerializationManagerDuplicateComponentDecl", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Toolbox item cannot be modified..
+ /// Looks up a localized string similar to The name '{0}' is already used by another object..
///
- public static string ToolboxItemLocked {
+ public static string SerializationManagerNameInUse {
get {
- return ResourceManager.GetString("ToolboxItemLocked", resourceCulture);
+ return ResourceManager.GetString("SerializationManagerNameInUse", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Data type {0} is not serializable. Items added to a property dictionary must be serializable..
+ /// Looks up a localized string similar to Type '{0}' does not have a constructor with parameters of types {1}..
///
- public static string ToolboxItemValueNotSerializable {
+ public static string SerializationManagerNoMatchingCtor {
get {
- return ResourceManager.GetString("ToolboxItemValueNotSerializable", resourceCulture);
+ return ResourceManager.GetString("SerializationManagerNoMatchingCtor", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Auto Arrange Tray Icons.
+ /// Looks up a localized string similar to This method cannot be invoked because the serialization manager does not have an active serialization session..
///
- public static string TrayAutoArrange {
+ public static string SerializationManagerNoSession {
get {
- return ResourceManager.GetString("TrayAutoArrange", resourceCulture);
+ return ResourceManager.GetString("SerializationManagerNoSession", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Line Up Tray Icons.
+ /// Looks up a localized string similar to Cannot name the object '{0}' because it is already named '{1}'..
///
- public static string TrayLineUpIcons {
+ public static string SerializationManagerObjectHasName {
get {
- return ResourceManager.GetString("TrayLineUpIcons", resourceCulture);
+ return ResourceManager.GetString("SerializationManagerObjectHasName", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Show Large or Small Icons.
+ /// Looks up a localized string similar to This method cannot be invoked because the serialization manager has an active serialization session..
///
- public static string TrayShowLargeIcons {
+ public static string SerializationManagerWithinSession {
get {
- return ResourceManager.GetString("TrayShowLargeIcons", resourceCulture);
+ return ResourceManager.GetString("SerializationManagerWithinSession", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Elements of type {0} are not supported. The serializer expects the element to be one of the following: {1}..
+ ///
+ public static string SerializerBadElementTypes {
+ get {
+ return ResourceManager.GetString("SerializerBadElementTypes", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to The field '{0}' could not be found on the target object. Make sure that the field is defined as an instance variable on the target object and has the correct scope..
+ ///
+ public static string SerializerFieldTargetEvalFailed {
+ get {
+ return ResourceManager.GetString("SerializerFieldTargetEvalFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Array rank '{0}' is too high. Visual Studio can only save and load arrays with a rank of 1..
+ ///
+ public static string SerializerInvalidArrayRank {
+ get {
+ return ResourceManager.GetString("SerializerInvalidArrayRank", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Code statements for the object '{0}' were lost during serialization. This may have been a result of another object misbehaving during serialization..
+ ///
+ public static string SerializerLostStatements {
+ get {
+ return ResourceManager.GetString("SerializerLostStatements", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Members of type '{0}' cannot be serialized..
+ ///
+ public static string SerializerMemberTypeNotSerializable {
+ get {
+ return ResourceManager.GetString("SerializerMemberTypeNotSerializable", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to The source code contains a reference to the class definition, but the class definition cannot be found..
+ ///
+ public static string SerializerNoRootExpression {
+ get {
+ return ResourceManager.GetString("SerializerNoRootExpression", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to The object '{0}' failed to serialize itself. It may not support code generation..
+ ///
+ public static string SerializerNoSerializerForComponent {
+ get {
+ return ResourceManager.GetString("SerializerNoSerializerForComponent", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to The type '{0}' has no event named '{1}'..
+ ///
+ public static string SerializerNoSuchEvent {
+ get {
+ return ResourceManager.GetString("SerializerNoSuchEvent", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to The type '{0}' has no field named '{1}'..
+ ///
+ public static string SerializerNoSuchField {
+ get {
+ return ResourceManager.GetString("SerializerNoSuchField", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to The type '{0}' has no property named '{1}'..
+ ///
+ public static string SerializerNoSuchProperty {
+ get {
+ return ResourceManager.GetString("SerializerNoSuchProperty", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Error reading resources from the resource file for the culture {0}: {1}.
+ ///
+ public static string SerializerResourceException {
+ get {
+ return ResourceManager.GetString("SerializerResourceException", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Error reading resources from the resource file for the default culture: {0}.
+ ///
+ public static string SerializerResourceExceptionInvariant {
+ get {
+ return ResourceManager.GetString("SerializerResourceExceptionInvariant", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Could not find type '{0}'. Please make sure that the assembly that contains this type is referenced. If this type is a part of your development project, make sure that the project has been successfully built using settings for your current platform or Any CPU..
+ ///
+ public static string SerializerTypeNotFound {
+ get {
+ return ResourceManager.GetString("SerializerTypeNotFound", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to The variable '{0}' is either undeclared or was never assigned..
+ ///
+ public static string SerializerUndeclaredName {
+ get {
+ return ResourceManager.GetString("SerializerUndeclaredName", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &About....
+ ///
+ public static string StandardMenuAbout {
+ get {
+ return ResourceManager.GetString("StandardMenuAbout", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &Contents.
+ ///
+ public static string StandardMenuContents {
+ get {
+ return ResourceManager.GetString("StandardMenuContents", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &Copy.
+ ///
+ public static string StandardMenuCopy {
+ get {
+ return ResourceManager.GetString("StandardMenuCopy", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Create Standard Menu.
+ ///
+ public static string StandardMenuCreateDesc {
+ get {
+ return ResourceManager.GetString("StandardMenuCreateDesc", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &Customize.
+ ///
+ public static string StandardMenuCustomize {
+ get {
+ return ResourceManager.GetString("StandardMenuCustomize", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Cu&t.
+ ///
+ public static string StandardMenuCut {
+ get {
+ return ResourceManager.GetString("StandardMenuCut", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &Edit.
+ ///
+ public static string StandardMenuEdit {
+ get {
+ return ResourceManager.GetString("StandardMenuEdit", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to E&xit.
+ ///
+ public static string StandardMenuExit {
+ get {
+ return ResourceManager.GetString("StandardMenuExit", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &File.
+ ///
+ public static string StandardMenuFile {
+ get {
+ return ResourceManager.GetString("StandardMenuFile", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &Help.
+ ///
+ public static string StandardMenuHelp {
+ get {
+ return ResourceManager.GetString("StandardMenuHelp", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &Index.
+ ///
+ public static string StandardMenuIndex {
+ get {
+ return ResourceManager.GetString("StandardMenuIndex", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &New.
+ ///
+ public static string StandardMenuNew {
+ get {
+ return ResourceManager.GetString("StandardMenuNew", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &Open.
+ ///
+ public static string StandardMenuOpen {
+ get {
+ return ResourceManager.GetString("StandardMenuOpen", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &Options.
+ ///
+ public static string StandardMenuOptions {
+ get {
+ return ResourceManager.GetString("StandardMenuOptions", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &Paste.
+ ///
+ public static string StandardMenuPaste {
+ get {
+ return ResourceManager.GetString("StandardMenuPaste", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &Print.
+ ///
+ public static string StandardMenuPrint {
+ get {
+ return ResourceManager.GetString("StandardMenuPrint", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Print Pre&view.
+ ///
+ public static string StandardMenuPrintPreview {
+ get {
+ return ResourceManager.GetString("StandardMenuPrintPreview", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &Redo.
+ ///
+ public static string StandardMenuRedo {
+ get {
+ return ResourceManager.GetString("StandardMenuRedo", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &Save.
+ ///
+ public static string StandardMenuSave {
+ get {
+ return ResourceManager.GetString("StandardMenuSave", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Save &As.
+ ///
+ public static string StandardMenuSaveAs {
+ get {
+ return ResourceManager.GetString("StandardMenuSaveAs", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &Search.
+ ///
+ public static string StandardMenuSearch {
+ get {
+ return ResourceManager.GetString("StandardMenuSearch", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Select &All.
+ ///
+ public static string StandardMenuSelectAll {
+ get {
+ return ResourceManager.GetString("StandardMenuSelectAll", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &Tools.
+ ///
+ public static string StandardMenuTools {
+ get {
+ return ResourceManager.GetString("StandardMenuTools", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &Undo.
+ ///
+ public static string StandardMenuUndo {
+ get {
+ return ResourceManager.GetString("StandardMenuUndo", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to C&ut.
+ ///
+ public static string StandardToolCut {
+ get {
+ return ResourceManager.GetString("StandardToolCut", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to He&lp.
+ ///
+ public static string StandardToolHelp {
+ get {
+ return ResourceManager.GetString("StandardToolHelp", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Argument should be a non-empty string..
+ ///
+ public static string ToolboxItemInvalidKey {
+ get {
+ return ResourceManager.GetString("ToolboxItemInvalidKey", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Property {0} requires an argument of type {1}..
+ ///
+ public static string ToolboxItemInvalidPropertyType {
+ get {
+ return ResourceManager.GetString("ToolboxItemInvalidPropertyType", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Toolbox item cannot be modified..
+ ///
+ public static string ToolboxItemLocked {
+ get {
+ return ResourceManager.GetString("ToolboxItemLocked", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Data type {0} is not serializable. Items added to a property dictionary must be serializable..
+ ///
+ public static string ToolboxItemValueNotSerializable {
+ get {
+ return ResourceManager.GetString("ToolboxItemValueNotSerializable", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Dock:.
+ ///
+ public static string ToolStripActionList_Dock {
+ get {
+ return ResourceManager.GetString("ToolStripActionList_Dock", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Changes the Dock property.
+ ///
+ public static string ToolStripActionList_DockDesc {
+ get {
+ return ResourceManager.GetString("ToolStripActionList_DockDesc", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to GripStyle:.
+ ///
+ public static string ToolStripActionList_GripStyle {
+ get {
+ return ResourceManager.GetString("ToolStripActionList_GripStyle", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Changes the GripStyle property.
+ ///
+ public static string ToolStripActionList_GripStyleDesc {
+ get {
+ return ResourceManager.GetString("ToolStripActionList_GripStyleDesc", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Layout && Appearance.
+ ///
+ public static string ToolStripActionList_Layout {
+ get {
+ return ResourceManager.GetString("ToolStripActionList_Layout", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to RenderMode:.
+ ///
+ public static string ToolStripActionList_RenderMode {
+ get {
+ return ResourceManager.GetString("ToolStripActionList_RenderMode", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Changes the RenderMode property.
+ ///
+ public static string ToolStripActionList_RenderModeDesc {
+ get {
+ return ResourceManager.GetString("ToolStripActionList_RenderModeDesc", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Adding {0} Item.
+ ///
+ public static string ToolStripAddingItem {
+ get {
+ return ResourceManager.GetString("ToolStripAddingItem", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to AllowItemReorder and AllowDrop cannot both be true..
+ ///
+ public static string ToolStripAllowItemReorderAndAllowDropCannotBeSetToTrue {
+ get {
+ return ResourceManager.GetString("ToolStripAllowItemReorderAndAllowDropCannotBeSetToTrue", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to ToolStrip New Item create Transaction..
+ ///
+ public static string ToolStripCreatingNewItemTransaction {
+ get {
+ return ResourceManager.GetString("ToolStripCreatingNewItemTransaction", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Embed in ToolStripContainer.
+ ///
+ public static string ToolStripDesignerEmbedVerb {
+ get {
+ return ResourceManager.GetString("ToolStripDesignerEmbedVerb", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Embeds the current ToolStrip in ToolStripContainer.
+ ///
+ public static string ToolStripDesignerEmbedVerbDesc {
+ get {
+ return ResourceManager.GetString("ToolStripDesignerEmbedVerbDesc", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &Insert Standard Items.
+ ///
+ public static string ToolStripDesignerStandardItemsVerb {
+ get {
+ return ResourceManager.GetString("ToolStripDesignerStandardItemsVerb", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Inserts standard items in the current ToolStrip.
+ ///
+ public static string ToolStripDesignerStandardItemsVerbDesc {
+ get {
+ return ResourceManager.GetString("ToolStripDesignerStandardItemsVerbDesc", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Type Here.
+ ///
+ public static string ToolStripDesignerTemplateNodeEnterText {
+ get {
+ return ResourceManager.GetString("ToolStripDesignerTemplateNodeEnterText", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Type Text for ToolStripMenuItem.
+ ///
+ public static string ToolStripDesignerTemplateNodeLabelToolTip {
+ get {
+ return ResourceManager.GetString("ToolStripDesignerTemplateNodeLabelToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Add Menu Item.
+ ///
+ public static string ToolStripDesignerTemplateNodeSplitButtonStatusStripAccessibleName {
+ get {
+ return ResourceManager.GetString("ToolStripDesignerTemplateNodeSplitButtonStatusStripAccessibleName", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Add ToolStripStatusLabel.
+ ///
+ public static string ToolStripDesignerTemplateNodeSplitButtonStatusStripToolTip {
+ get {
+ return ResourceManager.GetString("ToolStripDesignerTemplateNodeSplitButtonStatusStripToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Add ToolStripButton.
+ ///
+ public static string ToolStripDesignerTemplateNodeSplitButtonToolTip {
+ get {
+ return ResourceManager.GetString("ToolStripDesignerTemplateNodeSplitButtonToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to New item selection.
+ ///
+ public static string ToolStripDesignerToolStripAccessibleName {
+ get {
+ return ResourceManager.GetString("ToolStripDesignerToolStripAccessibleName", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Adding Item.
+ ///
+ public static string ToolStripDesignerTransactionAddingItem {
+ get {
+ return ResourceManager.GetString("ToolStripDesignerTransactionAddingItem", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Removing Item.
+ ///
+ public static string ToolStripDesignerTransactionRemovingItem {
+ get {
+ return ResourceManager.GetString("ToolStripDesignerTransactionRemovingItem", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &Edit DropDownItems....
+ ///
+ public static string ToolStripDropDownItemCollectionEditorVerb {
+ get {
+ return ResourceManager.GetString("ToolStripDropDownItemCollectionEditorVerb", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to ToolStrip MenuItem Insert in DropDown Transaction..
+ ///
+ public static string ToolStripInsertingIntoDropDownTransaction {
+ get {
+ return ResourceManager.GetString("ToolStripInsertingIntoDropDownTransaction", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &Edit Items....
+ ///
+ public static string ToolStripItemCollectionEditorVerb {
+ get {
+ return ResourceManager.GetString("ToolStripItemCollectionEditorVerb", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Con&vert To.
+ ///
+ public static string ToolStripItemContextMenuConvertTo {
+ get {
+ return ResourceManager.GetString("ToolStripItemContextMenuConvertTo", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &Insert.
+ ///
+ public static string ToolStripItemContextMenuInsert {
+ get {
+ return ResourceManager.GetString("ToolStripItemContextMenuInsert", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Set I&mage....
+ ///
+ public static string ToolStripItemContextMenuSetImage {
+ get {
+ return ResourceManager.GetString("ToolStripItemContextMenuSetImage", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to ToolStripItem Property Change Transaction..
+ ///
+ public static string ToolStripItemPropertyChangeTransaction {
+ get {
+ return ResourceManager.GetString("ToolStripItemPropertyChangeTransaction", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to ToolStripItem Morphing Transaction..
+ ///
+ public static string ToolStripMorphingItemTransaction {
+ get {
+ return ResourceManager.GetString("ToolStripMorphingItemTransaction", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to '{0}'.
+ ///
+ public static string ToolStripSelectMenuItem {
+ get {
+ return ResourceManager.GetString("ToolStripSelectMenuItem", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Cannot add ToolStripSeparator to MenuStrip..
+ ///
+ public static string ToolStripSeparatorError {
+ get {
+ return ResourceManager.GetString("ToolStripSeparatorError", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Auto Arrange Tray Icons.
+ ///
+ public static string TrayAutoArrange {
+ get {
+ return ResourceManager.GetString("TrayAutoArrange", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Line Up Tray Icons.
+ ///
+ public static string TrayLineUpIcons {
+ get {
+ return ResourceManager.GetString("TrayLineUpIcons", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Show Large or Small Icons.
+ ///
+ public static string TrayShowLargeIcons {
+ get {
+ return ResourceManager.GetString("TrayShowLargeIcons", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Type '{0}' is not available in the target framework..
+ ///
+ public static string TypeNotFoundInTargetFramework {
+ get {
+ return ResourceManager.GetString("TypeNotFoundInTargetFramework", resourceCulture);
}
}
diff --git a/src/System.Windows.Forms.Design/src/Resources/SR.resx b/src/System.Windows.Forms.Design/src/Resources/SR.resx
index 9c2ff7e65d1..c8f3eb4fd7f 100644
--- a/src/System.Windows.Forms.Design/src/Resources/SR.resx
+++ b/src/System.Windows.Forms.Design/src/Resources/SR.resx
@@ -229,7 +229,8 @@
Delete {0} components
- An error occurred while processing this command.\r\n{0}
+ An error occurred while processing this command.
+ {0}Format {0} components (spacing)
@@ -395,7 +396,9 @@
Cannot create a view for this design surface because the designer is not loaded.
- An error occurred while loading the document. Fix the error, and then try loading the document again. The error message follows:\r\n\r\n{0}
+ An error occurred while loading the document. Fix the error, and then try loading the document again. The error message follows:
+
+ {0}The designer loader did not provide a root component but has not indicated why.
@@ -409,15 +412,50 @@
The extender provider {0} has already been added as an extender. Adding another would result in duplicate properties.
-
- Elements of type {0} are not supported. The serializer expects the element to be one of the following: {1}.
+
+ Resize {0}
+
+
+ Resize {0} Controls
+
+
+ Dock in Parent Container
+
+
+ Undock in Parent Container
+
+
+ The control {0} has thrown an unhandled exception in the designer and has been disabled.
+
+ Exception:
+ {1}
+
+ Stack trace:{2}
+
+
+ The Locked property determines if we can move or resize the control.
+
+
+ '{1}' is not a valid value for '{0}'.
+
+
+ '{1}' is not a valid value for '{0}'. '{0}' should be between {2} and {3}.The field '{0}' could not be found on the target object. Make sure that the field is defined as an instance variable on the target object and has the correct scope.
+
+ Array rank '{0}' is too high. Visual Studio can only save and load arrays with a rank of 1.
+
+
+ Code statements for the object '{0}' were lost during serialization. This may have been a result of another object misbehaving during serialization.
+
The source code contains a reference to the class definition, but the class definition cannot be found.
+
+ The object '{0}' failed to serialize itself. It may not support code generation.
+
The type '{0}' has no event named '{1}'.
@@ -427,23 +465,182 @@
The type '{0}' has no property named '{1}'.
-
- Error reading resources from the resource file for the culture {0}: {1}
-
-
- Error reading resources from the resource file for the default culture: {0}
-
Could not find type '{0}'. Please make sure that the assembly that contains this type is referenced. If this type is a part of your development project, make sure that the project has been successfully built using settings for your current platform or Any CPU.The variable '{0}' is either undeclared or was never assigned.
+
+ &About...
+
+
+ &Contents
+
+
+ &Copy
+
+
+ Create Standard Menu
+
+
+ &Customize
+
+
+ Cu&t
+
+
+ &Edit
+
+
+ E&xit
+
+
+ &File
+
+
+ &Help
+
+
+ &Index
+
+
+ &New
+
+
+ &Open
+
+
+ &Options
+
+
+ &Paste
+
+
+ &Print
+
+
+ Print Pre&view
+
+
+ &Redo
+
+
+ &Save
+
+
+ Save &As
+
+
+ &Search
+
+
+ Select &All
+
+
+ &Tools
+
+
+ &Undo
+
+
+ C&ut
+
+
+ Dock:
+
+
+ Changes the Dock property
+
+
+ GripStyle:
+
+
+ Changes the GripStyle property
+
+
+ Layout && Appearance
+
+
+ RenderMode:
+
+
+ Changes the RenderMode property
+
+
+ Adding {0} Item
+
+
+ AllowItemReorder and AllowDrop cannot both be true.
+
+
+ ToolStrip New Item create Transaction.
+
+
+ Embed in ToolStripContainer
+
+
+ Embeds the current ToolStrip in ToolStripContainer
+
+
+ &Insert Standard Items
+
+
+ Inserts standard items in the current ToolStrip
+
+
+ Type Here
+
+
+ Type Text for ToolStripMenuItem
+
+
+ Add Menu Item
+
+
+ Add ToolStripStatusLabel
+
+
+ Add ToolStripButton
+
+
+ New item selection
+
+
+ Removing Item
+
+
+ ToolStrip MenuItem Insert in DropDown Transaction.
+
+
+ &Edit Items...
+
+
+ &Insert
+
+
+ ToolStripItem Property Change Transaction.
+
+
+ ToolStripItem Morphing Transaction.
+
+
+ Cannot add ToolStripSeparator to MenuStrip.
+
Type '{0}' is not available in the target framework.
-
- You cannot create a new session because this serialization manager already has an active serialization session.
+
+ ShowCheckMargin
+
+
+ Toggles the ShowCheckMargin property
+
+
+ ShowImageMargin
+
+
+ Toggles the ShowImageMargin propertyDuplicate declaration of member '{0}'
@@ -451,29 +648,29 @@
The name '{0}' is already used by another object.
-
- Type '{0}' does not have a constructor with parameters of types {1}.
-
-
- This method cannot be invoked because the serialization manager does not have an active serialization session.
-
Cannot name the object '{0}' because it is already named '{1}'.
-
- This method cannot be invoked because the serialization manager has an active serialization session.
+
+ Elements of type {0} are not supported. The serializer expects the element to be one of the following: {1}.
-
- Code statements for the object '{0}' were lost during serialization. This may have been a result of another object misbehaving during serialization.
+
+ Error reading resources from the resource file for the culture {0}: {1}
-
- The object '{0}' failed to serialize itself. It may not support code generation.
+
+ Error reading resources from the resource file for the default culture: {0}
-
- Array rank '{0}' is too high. Visual Studio can only save and load arrays with a rank of 1.
+
+ Adding Item
-
- Members of type '{0}' cannot be serialized.
+
+ &Edit DropDownItems...
+
+
+ Con&vert To
+
+
+ The serialization store is closed. New objects cannot be added to a closed store.Complete deserialization of {0} failed.
@@ -481,7 +678,64 @@
This type of serialization store is not supported. Use a store returned by the CreateStore method.
-
- The serialization store is closed. New objects cannot be added to a closed store.
+
+ Align To &Grid
+
+
+ &Bring To Front
+
+
+ C&opy
+
+
+ &Cut
+
+
+ &Delete
+
+
+ &Document Outline
+
+
+ &Lock Controls
+
+
+ &Paste
+
+
+ &Properties
+
+
+ &Select
+
+
+ &Send To Back
+
+
+ View &Code
+
+
+ You cannot create a new session because this serialization manager already has an active serialization session.
+
+
+ Type '{0}' does not have a constructor with parameters of types {1}.
+
+
+ This method cannot be invoked because the serialization manager does not have an active serialization session.
+
+
+ This method cannot be invoked because the serialization manager has an active serialization session.
+
+
+ Members of type '{0}' cannot be serialized.
+
+
+ He&lp
+
+
+ Set I&mage...
+
+
+ '{0}'
-
\ No newline at end of file
+
diff --git a/src/System.Windows.Forms.Design/src/Resources/xlf/SR.cs.xlf b/src/System.Windows.Forms.Design/src/Resources/xlf/SR.cs.xlf
index 93d5039bdd9..a42c7d226a0 100644
--- a/src/System.Windows.Forms.Design/src/Resources/xlf/SR.cs.xlf
+++ b/src/System.Windows.Forms.Design/src/Resources/xlf/SR.cs.xlf
@@ -22,6 +22,16 @@
Move {0} Controls
+
+ Resize {0}
+ Resize {0}
+
+
+
+ Resize {0} Controls
+ Resize {0} Controls
+
+ The serialization store is closed. New objects cannot be added to a closed store.Úložiště serializace je zavřeno. Do zavřeného úložiště nelze přidávat nové objekty.
@@ -37,26 +47,6 @@
Tento typ úložiště serializací není podporován. Použijte úložiště vrácené metodou CreateStore.
-
- Adding event '{0}'
- Přidání události {0}
-
-
-
- Unhandled VT: {0}.
- Nezpracovaná hodnota VT: {0}.
-
-
-
- Double cannot be converted to a date.
- Nelze převést typ Double na typ Date.
-
-
-
- Integer cannot be converted to a float.
- Nelze převést typ Integer na typ Float.
-
- Format {0} components (alignment)Format {0} components (alignment)
@@ -78,8 +68,10 @@
- An error occurred while processing this command.\r\n{0}
- An error occurred while processing this command.\r\n{0}
+ An error occurred while processing this command.
+ {0}
+ An error occurred while processing this command.
+ {0}
@@ -107,6 +99,121 @@
Unknown spacing command
+
+ Adding event '{0}'
+ Přidání události {0}
+
+
+
+ Unhandled VT: {0}.
+ Nezpracovaná hodnota VT: {0}.
+
+
+
+ Double cannot be converted to a date.
+ Nelze převést typ Double na typ Date.
+
+
+
+ Integer cannot be converted to a float.
+ Nelze převést typ Integer na typ Float.
+
+
+
+ Align To &Grid
+ Align To &Grid
+
+
+
+ &Bring To Front
+ &Bring To Front
+
+
+
+ C&opy
+ C&opy
+
+
+
+ &Cut
+ &Cut
+
+
+
+ &Delete
+ &Delete
+
+
+
+ &Document Outline
+ &Document Outline
+
+
+
+ &Lock Controls
+ &Lock Controls
+
+
+
+ &Paste
+ &Paste
+
+
+
+ &Properties
+ &Properties
+
+
+
+ &Select
+ &Select
+
+
+
+ &Send To Back
+ &Send To Back
+
+
+
+ ShowCheckMargin
+ ShowCheckMargin
+
+
+
+ Toggles the ShowCheckMargin property
+ Toggles the ShowCheckMargin property
+
+
+
+ ShowImageMargin
+ ShowImageMargin
+
+
+
+ Toggles the ShowImageMargin property
+ Toggles the ShowImageMargin property
+
+
+
+ View &Code
+ View &Code
+
+
+
+ The control {0} has thrown an unhandled exception in the designer and has been disabled.
+
+ Exception:
+ {1}
+
+ Stack trace:{2}
+ The control {0} has thrown an unhandled exception in the designer and has been disabled.
+
+ Exception:
+ {1}
+
+ Stack trace:{2}
+
+ Could not convert value '{0}' to the type '{1}'.Could not convert value '{0}' to the type '{1}'.
@@ -168,8 +275,10 @@
- An error occurred while loading the document. Fix the error, and then try loading the document again. The error message follows:\r\n\r\n{0}
- Při načítání dokumentu došlo k chybě. Opravte chybu a pak zkuste dokument načíst znovu. Následuje chybová zpráva:\r\n\r\n{0}
+ An error occurred while loading the document. Fix the error, and then try loading the document again. The error message follows:
+
+ {0}
+ Při načítání dokumentu došlo k chybě. Opravte chybu a pak zkuste dokument načíst znovu. Následuje chybová zpráva:\r\n\r\n{0}
@@ -337,6 +446,16 @@
Určuje, zda mají být v návrháři použity vodicí čáry. Pokud je tato vlastnost nastavena na hodnotu True, vodicí čáry budou použity jako vodítka. Pokud je tato vlastnost nastavena na hodnotu False, budou použity čáry mřížky.
+
+ Dock in Parent Container
+ Dock in Parent Container
+
+
+
+ Undock in Parent Container
+ Undock in Parent Container
+
+ .NET ComponentKomponenta .NET
@@ -362,6 +481,16 @@
Tento objekt IDataObject nepodporuje funkci SetData.
+
+ Size {0}
+ Size {0}
+
+
+
+ Size {0} components
+ Size {0} components
+
+ The extender provider {0} has already been added as an extender. Adding another would result in duplicate properties.Zprostředkovatel rozšířeného objektu {0} již byl přidán jako rozšiřující objekt. V případě přidání dalšího by došlo k duplicitě vlastností.
@@ -372,14 +501,14 @@
Jen pro čtení
-
- Size {0}
- Size {0}
+
+ '{1}' is not a valid value for '{0}'.
+ '{1}' is not a valid value for '{0}'.
-
- Size {0} components
- Size {0} components
+
+ '{1}' is not a valid value for '{0}'. '{0}' should be between {2} and {3}.
+ '{1}' is not a valid value for '{0}'. '{0}' should be between {2} and {3}.
@@ -502,6 +631,296 @@
Proměnná {0} není deklarována nebo jí dosud nebyla přiřazena hodnota.
+
+ &About...
+ &About...
+
+
+
+ &Contents
+ &Contents
+
+
+
+ &Copy
+ &Copy
+
+
+
+ Create Standard Menu
+ Create Standard Menu
+
+
+
+ &Customize
+ &Customize
+
+
+
+ Cu&t
+ Cu&t
+
+
+
+ &Edit
+ &Edit
+
+
+
+ E&xit
+ E&xit
+
+
+
+ &File
+ &File
+
+
+
+ &Help
+ &Help
+
+
+
+ &Index
+ &Index
+
+
+
+ &New
+ &New
+
+
+
+ &Open
+ &Open
+
+
+
+ &Options
+ &Options
+
+
+
+ &Paste
+ &Paste
+
+
+
+ &Print
+ &Print
+
+
+
+ Print Pre&view
+ Print Pre&view
+
+
+
+ &Redo
+ &Redo
+
+
+
+ &Save
+ &Save
+
+
+
+ Save &As
+ Save &As
+
+
+
+ &Search
+ &Search
+
+
+
+ Select &All
+ Select &All
+
+
+
+ &Tools
+ &Tools
+
+
+
+ &Undo
+ &Undo
+
+
+
+ C&ut
+ C&ut
+
+
+
+ He&lp
+ He&lp
+
+
+
+ Dock:
+ Dock:
+
+
+
+ Changes the Dock property
+ Changes the Dock property
+
+
+
+ GripStyle:
+ GripStyle:
+
+
+
+ Changes the GripStyle property
+ Changes the GripStyle property
+
+
+
+ Layout && Appearance
+ Layout && Appearance
+
+
+
+ RenderMode:
+ RenderMode:
+
+
+
+ Changes the RenderMode property
+ Changes the RenderMode property
+
+
+
+ Adding {0} Item
+ Adding {0} Item
+
+
+
+ AllowItemReorder and AllowDrop cannot both be true.
+ AllowItemReorder and AllowDrop cannot both be true.
+
+
+
+ ToolStrip New Item create Transaction.
+ ToolStrip New Item create Transaction.
+
+
+
+ Embed in ToolStripContainer
+ Embed in ToolStripContainer
+
+
+
+ Embeds the current ToolStrip in ToolStripContainer
+ Embeds the current ToolStrip in ToolStripContainer
+
+
+
+ &Insert Standard Items
+ &Insert Standard Items
+
+
+
+ Inserts standard items in the current ToolStrip
+ Inserts standard items in the current ToolStrip
+
+
+
+ Type Here
+ Type Here
+
+
+
+ Type Text for ToolStripMenuItem
+ Type Text for ToolStripMenuItem
+
+
+
+ Add Menu Item
+ Add Menu Item
+
+
+
+ Add ToolStripStatusLabel
+ Add ToolStripStatusLabel
+
+
+
+ Add ToolStripButton
+ Add ToolStripButton
+
+
+
+ New item selection
+ New item selection
+
+
+
+ Adding Item
+ Adding Item
+
+
+
+ Removing Item
+ Removing Item
+
+
+
+ &Edit DropDownItems...
+ &Edit DropDownItems...
+
+
+
+ ToolStrip MenuItem Insert in DropDown Transaction.
+ ToolStrip MenuItem Insert in DropDown Transaction.
+
+
+
+ &Edit Items...
+ &Edit Items...
+
+
+
+ Con&vert To
+ Con&vert To
+
+
+
+ &Insert
+ &Insert
+
+
+
+ Set I&mage...
+ Set I&mage...
+
+
+
+ ToolStripItem Property Change Transaction.
+ ToolStripItem Property Change Transaction.
+
+
+
+ ToolStripItem Morphing Transaction.
+ ToolStripItem Morphing Transaction.
+
+
+
+ '{0}'
+ '{0}'
+
+
+
+ Cannot add ToolStripSeparator to MenuStrip.
+ Cannot add ToolStripSeparator to MenuStrip.
+
+ Argument should be a non-empty string.Argument musí být neprázdný řetězec.
@@ -522,11 +941,31 @@
Typ dat {0} není serializovatelný. Položky přidané do slovníku vlastností musí být serializovatelné.
+
+ Auto Arrange Tray Icons
+ Auto Arrange Tray Icons
+
+
+
+ Line Up Tray Icons
+ Line Up Tray Icons
+
+
+
+ Show Large or Small Icons
+ Show Large or Small Icons
+
+ Type '{0}' is not available in the target framework.Typ {0} není v cílové architektuře k dispozici.
+
+ Error
+ Error
+
+ Add ComponentPřidat součást
@@ -572,26 +1011,6 @@
Služba {0} je požadována, ale nebyla nalezena. Pokud jste tuto službu odebrali, zajistěte její náhradu.
-
- Auto Arrange Tray Icons
- Auto Arrange Tray Icons
-
-
-
- Line Up Tray Icons
- Line Up Tray Icons
-
-
-
- Show Large or Small Icons
- Show Large or Small Icons
-
-
-
- Error
- Error
-
- Not implemented.Není implementováno.
@@ -612,6 +1031,11 @@
Vertical center of {0} component(s)
+
+ The Locked property determines if we can move or resize the control.
+ The Locked property determines if we can move or resize the control.
+
+