-
-|
-Property |
-Description |
-
-|
-MDIRestore,
-MDIMove,
-MDIResize,
-MDIFloating,
-MDIDockable,
-MDIDocument,
-MDIMinimize,
-MDIMaximizeMDIClose |
-Sets the string for the context menu item in DocumentContainer. |
-
-|
-{{ '' | markdownify}}
-
-{{ '' | markdownify}}
-
-{{ '_ContextMenu(en-US) ContextMenu(fr-FR)_' | markdownify }} |
-
-|
-MoveToNextTabGroup |
-Sets the string for MoveToNextTabGroup context menu item in DockingManager and DocumentContainer. |
-
-|
-{{ '' | markdownify}}
-
-{{ '' | markdownify}}
-
-{{ '_MoveToNextTabGroup(en-US) MoveToNextTabGroup(fr-FR)_' | markdownify }} |
-
-|
-MoveToPreviousTabGroup |
-Sets the string for MoveToPreviousTabGroup context menu item in DockingManager and DocumentContainer. |
-
-|
-{{ '' | markdownify}}
-
-{{ '' | markdownify}}
-
-{{ '_MoveToPreviousTabGroup(en-US) MoveToPreviousTabGroup(fr-FR)_' | markdownify }} |
-
-|
-NewTabgroupMenuItemCancel |
-Sets the string for the Tab context menu item in DockingManager and DocumentContainer. |
-
-|
-{{ '' | markdownify}}
-
-{{ '' | markdownify}}
-
-{{ '_NewTabGroup(en-US) NewTabGroup(fr-FR)_' | markdownify }} |
-
-|
-TabClose,
-CloseAllButThis,
-TabCloseAll,
-Floating,
-Document,
-Dockable,
-NewHorizontalTabGroup,
-NewVerticalTabGroup |
-Sets the string for the menu item in DocumentContainer and DockingManager. |
-
-|
-{{ '' | markdownify}}
-
-{{ '' | markdownify}}
-
-{{ '_MenuItem(en-US) MenuItem(fr-FR)_' | markdownify }} |
-
-
+The DocumentContainer exposes a set of resource keys that you can override in a `.resx` file to localize its context menu items and command labels to a specific culture. You can simply provide translated string values in the resource file for a specific culture and set the culture in the application.
+
+## Localizable Resource Keys
+
+The following table lists the resource keys that the DocumentContainer (and DockingManager) read at runtime.
+
+| Resource key | Description | Default menu text (en-US) |
+|---|---|---|
+| `MDIRestore` | Restores an MDI window from maximized or minimized state. | Restore |
+| `MDIMove` | Allows the MDI window to be moved. | Move |
+| `MDIResize` | Allows the MDI window to be resized. | Resize |
+| `MDIFloating` | Floats the MDI window. | Floating |
+| `MDIDockable` | Docks the MDI window. | Dockable |
+| `MDIDocument` | Shows the window as a document. | Document |
+| `MDIMinimize` | Minimizes the MDI window. | Minimize |
+| `MDIMaximize` | Maximizes the MDI window. | Maximize |
+| `MDIClose` | Closes the MDI window. | Close |
+| `MoveToNextTabGroup` | Moves the tab to the next tab group (DockingManager and DocumentContainer). | Move to Next Tab Group |
+| `MoveToPreviousTabGroup` | Moves the tab to the previous tab group (DockingManager and DocumentContainer). | Move to Previous Tab Group |
+| `NewTabgroupMenuItemCancel` | Cancels a new tab group drag operation. | Cancel |
+| `TabClose` | Closes the active tab. | Close |
+| `CloseAllButThis` | Closes all tabs except the active one. | Close All But This |
+| `TabCloseAll` | Closes all tabs. | Close All |
+| `Floating` | Floats the active tab. | Floating |
+| `Document` | Shows the active tab as a document. | Document |
+| `Dockable` | Docks the active tab. | Dockable |
+| `NewHorizontalTabGroup` | Creates a new horizontal tab group. | New Horizontal Tab Group |
+| `NewVerticalTabGroup` | Creates a new vertical tab group. | New Vertical Tab Group |
+
+## Localizing the DocumentContainer
+
+To localize the DocumentContainer, create a resource file (for example `Syncfusion.Tools.WPF.fr-FR.resx`) in your project, add the keys above with translated values, and set the application culture at startup.
+
+{% tabs %}
+{% highlight C# %}
+using System.Globalization;
+using System.Threading;
+
+Thread.CurrentThread.CurrentCulture = new CultureInfo("fr-FR");
+Thread.CurrentThread.CurrentUICulture = new CultureInfo("fr-FR");
+{% endhighlight %}
+{% endtabs %}
diff --git a/wpf/Tabbed-MDI-Form/MDI-Resize.md b/wpf/Tabbed-MDI-Form/MDI-Resize.md
index 7d20ada65..3c34414ee 100644
--- a/wpf/Tabbed-MDI-Form/MDI-Resize.md
+++ b/wpf/Tabbed-MDI-Form/MDI-Resize.md
@@ -9,29 +9,18 @@ documentation: ug
# MDI Resize in WPF DocumentContainer
-Document Container provides options to resize its elements. Setting AllowMDIResize property to _true__,_ will enable the end users to resize the container elements.
-
-To set this property, use the below code.
-
-
-
-{% highlight xaml %}
-
-
-
-
-
-