diff --git a/WindowsForms-toc.html b/WindowsForms-toc.html
index cbfb0735c..b37ca7054 100644
--- a/WindowsForms-toc.html
+++ b/WindowsForms-toc.html
@@ -6101,7 +6101,7 @@
 	
 	
 		Release Notes
-		- 2025 Volume 3  - v31.*
- 2025 Volume 2 - v30.*
- 2025 Volume 1 - v29.*
- 2024 Volume 4 - v28.*
- 2024 Volume 3 - v27.*
- 2024 Volume 2 - v26.*- Weekly Nuget Release		- v26.2.14+
- 2025 Volume 3  - v31.*
- 2025 Volume 2 - v30.*
- 2025 Volume 1 - v29.*
- 2024 Volume 4 - v28.*
- 2024 Volume 3 - v27.*
- 2024 Volume 2 - v26.*
- 2024 Volume 1 - v25.*
- 2023 Volume 4 - v24.*
- 2023 Volume 3 - v23.*
- 2023 Volume 2 - v22.*
- 2023 Volume 1 - v21.*
- 2022 Volume 4 - v20.4.0.*
- 2022 Volume 3 - v20.3.0.*
- 2022 Volume 2 - v20.2.0.*
- 2022 volume 1 - v20.1.0.*
- 2021 Volume 4 - v19.4.0.*
- 2021 volume 3 - v19.3.0.*
- 2021 Volume 2 - v19.2.0.*
- 2021 Volume 1 - v19.1.0.*
- 2020 Volume 4 - v18.4.0.*
- 2020 Volume 3  - v18.3.0.*
- 2020 Volume 2 - v18.2.0.*
- 2020 Volume 1 - v18.1.0.*
- 2019 Volume 4 - v17.4.0.*
- 2019 Volume 3 - v17.3.0.*
diff --git a/WindowsForms/Diagram/Zoom-And-Pan.md b/WindowsForms/Diagram/Zoom-And-Pan.md
index ed27e07b9..82a7d3660 100644
--- a/WindowsForms/Diagram/Zoom-And-Pan.md
+++ b/WindowsForms/Diagram/Zoom-And-Pan.md
@@ -253,6 +253,19 @@ zoomTool.ZoomIncrement = 10
 
 
 
+#### Reset Zoom
+
+You can reset the zooming value using the ZoomToActual() method of the view. Programmatically, it is implemented as follows:
+
+{% tabs %}
+{% highlight c# %}
+
+diagram1.View.ZoomToActual();
+
+{% endhighlight %}
+{% endtabs %}
+
+
 ## Panning Support
 
 Pan tool allows the user to drag the diagram and hence scroll it in any direction. 
@@ -278,3 +291,23 @@ Sample diagram is as follows.
 
 
 
+
+#### Reset Pan
+
+You can reset the panning value by setting the view origin and scroll bounds to their default values. Programmatically, it is implemented as follows:
+
+{% tabs %}
+{% highlight c# %}
+
+this.diagram1.BeginUpdate();
+this.diagram1.Controller.View.Origin = new PointF(0, 0);
+this.diagram1.Controller.View.ScrollVirtualBounds = new RectangleF(0, 0, 0, 0);
+//Deactivate pan tool and activate select tool
+this.diagram1.ActivateTool("SelectTool");
+this.diagram1.EndUpdate();
+
+
+{% endhighlight %}
+{% endtabs %}
+
+This code resets the diagram’s view to the top-left corner and clears any virtual scrolling bounds. It also switches the active tool back to the SelectTool, ensuring that the panning mode is deactivated.
diff --git a/WindowsForms/Release-notes/v31.1.23.md b/WindowsForms/Release-notes/v31.1.23.md
new file mode 100644
index 000000000..2b9e15454
--- /dev/null
+++ b/WindowsForms/Release-notes/v31.1.23.md
@@ -0,0 +1,103 @@
+---
+title: Essential Studio® for Windows Forms  Release Notes - v31.1.23
+description: Learn here about the controls in the Essential Studio® for Windows Forms  Weekly Nuget Release - Release Notes - v31.1.23
+platform: windowsforms
+documentation: ug
+---
+
+# Essential Studio® for Windows Forms  - v31.1.23 Release Notes
+
+{% include release-info.html date="October 07, 2025"  version="v31.1.23" passed="8652" failed="0" %}
+
+{% directory path: _includes/release-notes/v31.1.23 %}
+
+{% include {{file.url}} %}
+
+{% enddirectory %}
+
+## Test Results
+
+| Component Name | Test Cases | Passed | Failed | Remarks |
+|---------------|------------|--------|--------|---------|
+| Autocomplete | 58 | 58 | 0 | All Passed |
+| AutoLabel | 3 | 3 | 0 | All Passed |
+| ButtonAdv | 14 | 14 | 0 | All Passed |
+| Calculate | 131 | 131 | 0 | All Passed |
+| Carousel | 7 | 7 | 0 | All Passed |
+| CheckBoxAdv | 124 | 124 | 0 | All Passed |
+| ColorPicker | 27 | 27 | 0 | All Passed |
+| ColorPickerButton | 1 | 1 | 0 | All Passed |
+| ColorPickerUIAdv | 1 | 1 | 0 | All Passed |
+| ColorUIControl | 2 | 2 | 0 | All Passed |
+| CombinedControls | 297 | 297 | 0 | All Passed |
+| ComboBoxAdv | 339 | 339 | 0 | All Passed |
+| ComboDropDown | 2 | 2 | 0 | All Passed |
+| CommandBarController | 1 | 1 | 0 | All Passed |
+| CurrencyEdit | 1 | 1 | 0 | All Passed |
+| DateTimeEdit | 93 | 93 | 0 | All Passed |
+| DateTimePickerAdv | 44 | 44 | 0 | All Passed |
+| Digital Gauge | 6 | 6 | 0 | All Passed |
+| DigitalGauge | 1 | 1 | 0 | All Passed |
+| DockingManager | 1658 | 1658 | 0 | All Passed |
+| DomainUpDownExt | 3 | 3 | 0 | All Passed |
+| DoubleTextBox | 3 | 3 | 0 | All Passed |
+| EditControl | 331 | 331 | 0 | All Passed |
+| FontListBox | 2 | 2 | 0 | All Passed |
+| GradientPanelExt | 4 | 4 | 0 | All Passed |
+| GridGroupingControl | 15 | 15 | 0 | All Passed |
+| GroupBar | 37 | 37 | 0 | All Passed |
+| GroupView | 2 | 2 | 0 | All Passed |
+| HTMLUIControl | 53 | 53 | 0 | All Passed |
+| ImageStreamer | 1 | 1 | 0 | All Passed |
+| InputControls_HighContrastSupport | 12 | 12 | 0 | All Passed |
+| InputControls_Office2019ThemeSupport | 8 | 8 | 0 | All Passed |
+| LinearGauge | 58 | 58 | 0 | All Passed |
+| MainFrameBarManager | 3 | 3 | 0 | All Passed |
+| MainFrameBarManager_Jira | 2 | 2 | 0 | All Passed |
+| MenuPackage | 79 | 79 | 0 | All Passed |
+| MetroForm | 26 | 26 | 0 | All Passed |
+| MonthCalendarAdv | 1 | 1 | 0 | All Passed |
+| MultiColumnComboBox | 8 | 8 | 0 | All Passed |
+| MultiColumnTreeview | 96 | 96 | 0 | All Passed |
+| MultiSelectionComboBox | 7 | 7 | 0 | All Passed |
+| NavigationDrawer | 52 | 52 | 0 | All Passed |
+| NavigationView | 1 | 1 | 0 | All Passed |
+| NumericUpDownExt | 6 | 6 | 0 | All Passed |
+| Office2007Form | 60 | 60 | 0 | All Passed |
+| PercentTextBox | 1 | 1 | 0 | All Passed |
+| PivotChart | 122 | 122 | 0 | All Passed |
+| PivotGrid | 19 | 19 | 0 | All Passed |
+| PivotGridControl | 189 | 189 | 0 | All Passed |
+| PopupMenu | 4 | 4 | 0 | All Passed |
+| ProgressBarAdv | 3 | 3 | 0 | All Passed |
+| RadialGauge | 85 | 85 | 0 | All Passed |
+| RadialMenu | 2 | 2 | 0 | All Passed |
+| RadialSlider | 12 | 12 | 0 | All Passed |
+| RangeSlider | 5 | 5 | 0 | All Passed |
+| RatingControl | 1 | 1 | 0 | All Passed |
+| Ribbon | 54 | 54 | 0 | All Passed |
+| RibbonControlAdv | 1436 | 1436 | 0 | All Passed |
+| SfButton | 4 | 4 | 0 | All Passed |
+| SfCalendar | 1 | 1 | 0 | All Passed |
+| SfComboBox | 94 | 94 | 0 | All Passed |
+| SfDataGrid | 855 | 855 | 0 | All Passed |
+| SfDataPager | 95 | 95 | 0 | All Passed |
+| SfDateTimeEdit | 11 | 11 | 0 | All Passed |
+| SfForm | 23 | 23 | 0 | All Passed |
+| SfListView | 65 | 65 | 0 | All Passed |
+| SfNumericTextBox | 5 | 5 | 0 | All Passed |
+| SfScrollFrame | 1 | 1 | 0 | All Passed |
+| SfTabbedForm | 25 | 25 | 0 | All Passed |
+| SpellCheckerAdv | 51 | 51 | 0 | All Passed |
+| SplashPanel | 2 | 2 | 0 | All Passed |
+| SplitContainerAdv | 10 | 10 | 0 | All Passed |
+| StatusStripEx | 23 | 23 | 0 | All Passed |
+| SuperToolTip | 2 | 2 | 0 | All Passed |
+| TabbedMdiManager | 478 | 478 | 0 | All Passed |
+| TabControlAdv | 724 | 724 | 0 | All Passed |
+| TextBoxExt | 7 | 7 | 0 | All Passed |
+| TrackBarEx | 1 | 1 | 0 | All Passed |
+| TreeNavigator | 17 | 17 | 0 | All Passed |
+| TreeViewAdv | 446 | 446 | 0 | All Passed |
+| XpTaskbar | 98 | 98 | 0 | All Passed |
+| XPToolbar | 1 | 1 | 0 | All Passed |
\ No newline at end of file