From fc99ee60a5bb1773b3e4f67e1558f0a6278106b8 Mon Sep 17 00:00:00 2001 From: AravinthSundaramSF Date: Fri, 4 Sep 2026 16:25:37 +0530 Subject: [PATCH 1/3] Task(1048407): Avoided redundant words in WF GridListControl --- .../MultiColumn-ListBox/ComboBoxBase-Feature.md | 2 +- .../Customizing-List-control.md | 4 ++-- WindowsForms/MultiColumn-ListBox/Data-Binding.md | 2 +- .../MultiColumn-ListBox/Getting-Started.md | 16 ++++++++-------- WindowsForms/MultiColumn-ListBox/Overview.md | 2 +- .../MultiColumn-ListBox/Selection-Modes.md | 2 +- 6 files changed, 14 insertions(+), 14 deletions(-) diff --git a/WindowsForms/MultiColumn-ListBox/ComboBoxBase-Feature.md b/WindowsForms/MultiColumn-ListBox/ComboBoxBase-Feature.md index d50d05f39..a01ea8a59 100644 --- a/WindowsForms/MultiColumn-ListBox/ComboBoxBase-Feature.md +++ b/WindowsForms/MultiColumn-ListBox/ComboBoxBase-Feature.md @@ -9,7 +9,7 @@ documentation: ug # ComboBoxBase in Windows Forms MultiColumn ListBox -The GridList control can be coupled to the ComboBoxBase control by using the ListControl property of ComboBoxBase class. ComboBoxBase is an advanced control provided by Syncfusion that essentially separates edit portion from drop-down portion making. It displays the GridList control as a dropdown i.e. user can drop the GridList control in the drop-down area to get a multi-column drop-down effect. +The MultiColumn ListBox can be coupled to the ComboBoxBase control by using the ListControl property of ComboBoxBase class. ComboBoxBase is an advanced control provided by Syncfusion that essentially separates edit portion from drop-down portion making. It displays the MultiColumn ListBox as a dropdown i.e. user can drop the control in the drop-down area to get a multi-column drop-down effect. {% tabs %} {% highlight c# %} diff --git a/WindowsForms/MultiColumn-ListBox/Customizing-List-control.md b/WindowsForms/MultiColumn-ListBox/Customizing-List-control.md index 5bd60f535..88d7008c3 100644 --- a/WindowsForms/MultiColumn-ListBox/Customizing-List-control.md +++ b/WindowsForms/MultiColumn-ListBox/Customizing-List-control.md @@ -9,7 +9,7 @@ documentation: ug # Customizing List control in Windows Forms MultiColumn ListBox -Appearance of the GridList control can be customized by using the following properties: +Appearance of the MultiColumn ListBox can be customized by using the following properties: * TransparentBackground: Sets a transparent background for grid cells. If its value is set to true, no background color will be displayed. If its value is set to false, the background will be filled with the chosen color. The value is false by default. Refer to the BackColor property for setting the required background color. @@ -79,7 +79,7 @@ Me.gridListControl1.Grid.Properties.GridLineColor = Color.Blue ![Grid Line Color in WinForms MultiColumn ListBox](Customizing-List-control_images/Customizing-List-control_img5.jpeg) -* BackColor: Allows you to specify the background color for the GridList control. It is mandatory to set the TransparentBackground to false. +* BackColor: Allows you to specify the background color for the MultiColumn ListBox. It is mandatory to set the TransparentBackground to false. {% capture codesnippet5 %} {% tabs %} diff --git a/WindowsForms/MultiColumn-ListBox/Data-Binding.md b/WindowsForms/MultiColumn-ListBox/Data-Binding.md index 60f065a7d..87f8cd915 100644 --- a/WindowsForms/MultiColumn-ListBox/Data-Binding.md +++ b/WindowsForms/MultiColumn-ListBox/Data-Binding.md @@ -11,7 +11,7 @@ documentation: ug ## Data Binding -Data binding used in the web pages that contain interactive components such as forms, calculators, tutorials, and games. Pages are displayed incrementally so that portions of a page can be used even before the entire page has finished downloading. Data binding helps in populating the GridList control with large amounts of data by using the DataSource property that allows the system to acquire data from the Data Source Object (DSO). +Data binding used in the web pages that contain interactive components such as forms, calculators, tutorials, and games. Pages are displayed incrementally so that portions of a page can be used even before the entire page has finished downloading. Data binding helps in populating the MultiColumn ListBox with large amounts of data by using the DataSource property that allows the system to acquire data from the Data Source Object (DSO). {% tabs %} {% highlight c# %} diff --git a/WindowsForms/MultiColumn-ListBox/Getting-Started.md b/WindowsForms/MultiColumn-ListBox/Getting-Started.md index 299b33f96..f0c703121 100644 --- a/WindowsForms/MultiColumn-ListBox/Getting-Started.md +++ b/WindowsForms/MultiColumn-ListBox/Getting-Started.md @@ -14,7 +14,7 @@ This section explains creating a simple application with [WinForms MultiColumn L ## Assembly Deployment Refer [control dependencies](https://help.syncfusion.com/windowsforms/control-dependencies#gridlistcontrol) section to get the list of assemblies or NuGet package needs to be added as reference to use the control in any application. -The following assemblies should be added as reference to use the GridListControl in any application. +The following assemblies should be added as reference to use the MultiColumn ListBox in any application. @@ -24,16 +24,16 @@ Description

+Contains classes that handles all UI operations, fundamentals, and base classes of the MultiColumn ListBox.

+Contains the style related properties and various editor controls used in the MultiColumn ListBox.

{{'[Syncfusion.Grid.Windows](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Grid.html)'| markdownify }}

-Contains classes that handles all UI operations, fundamentals, and base classes of the GridListControl.

{{'[Syncfusion.Shared.Base](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.html)'| markdownify }}

-Contains the style related properties and various editor controls used in the GridListControl.

-## Creating application with GridListControl +## Creating application with MultiColumn ListBox -This section provides step-by-step procedure to create a GridList control through designer and programmatic approach in a .NET application. +This section provides step-by-step procedure to create a MultiColumn ListBox through designer and programmatic approach in a .NET application. ### Through designer @@ -56,7 +56,7 @@ Drag the control onto the form, size it and set the desired properties if the da ![Drag the GridListControl Object from Toolbox](Creating-Grid-List-Control_images/Creating-Grid-List-Control_img4.jpeg) 5. Size and position it. -6. Go to the Properties dialog of this GridList control and set the DataSource property of this control to an appropriate object. +6. Go to the Properties dialog of this MultiColumn ListBox and set the DataSource property of this control to an appropriate object. ![set the DataSource property](Creating-Grid-List-Control_images/Creating-Grid-List-Control_img5.jpeg) @@ -68,7 +68,7 @@ This designer-created data source is available to use as the data source member ### Through code -The GridList control sample that ships with Essential Grid does not use the designer. It creates an ArrayList of objects that serves as a data source for the GridList control. Each state object has a LongName, ShortName, and ImageIndex properties that can be displayed in the list control. +The MultiColumn ListBox sample that ships with Essential Grid does not use the designer. It creates an ArrayList of objects that serves as a data source for the control. Each state object has a LongName, ShortName, and ImageIndex properties that can be displayed in the list control. For the complete implementation details, refer to the sample in the following installation path: @@ -109,4 +109,4 @@ gridListBox1.FillLastColumn = True ## Selection -Selection for the GridListControl can be enabled by using the SelectionMode property. The `GridListControl` supports three types of selection behaviors based on the [SelectionMode](https://help.syncfusion.com/windowsforms/multicolumn-listbox/data-binding-and-selection-modes) option. The SelectionBehaviors can be specified to one for selecting single row or multi-simple to select many rows. +Selection for the MultiColumn ListBox can be enabled by using the SelectionMode property. The control supports three types of selection behaviors based on the [SelectionMode](https://help.syncfusion.com/windowsforms/multicolumn-listbox/data-binding-and-selection-modes) option. The SelectionBehaviors can be specified to one for selecting single row or multi-simple to select many rows. diff --git a/WindowsForms/MultiColumn-ListBox/Overview.md b/WindowsForms/MultiColumn-ListBox/Overview.md index 64e8e0a22..e72c451e6 100644 --- a/WindowsForms/MultiColumn-ListBox/Overview.md +++ b/WindowsForms/MultiColumn-ListBox/Overview.md @@ -9,7 +9,7 @@ documentation: ug # About Syncfusion® Windows Forms MultiColumn ListBox Control -The GridList control provides a very rich way to display a list of items in multi-column list view with headers. It supports displaying single and multiple columns, data binding, single and multiple selection, and style customization at cell level. +The MultiColumn ListBox provides a very rich way to display a list of items in multi-column list view with headers. It supports displaying single and multiple columns, data binding, single and multiple selection, and style customization at cell level. ## Key features diff --git a/WindowsForms/MultiColumn-ListBox/Selection-Modes.md b/WindowsForms/MultiColumn-ListBox/Selection-Modes.md index bc40337cd..4456fa3f8 100644 --- a/WindowsForms/MultiColumn-ListBox/Selection-Modes.md +++ b/WindowsForms/MultiColumn-ListBox/Selection-Modes.md @@ -11,7 +11,7 @@ documentation: ug ## Selection modes -Selection behavior of the GridList control can be specified by using the SelectionMode property. There are three types of selection behaviors: +Selection behavior of the MultiColumn ListBox can be specified by using the SelectionMode property. There are three types of selection behaviors: * One: Selects only one item. * MultiSimple: Selects multiple items. From 9ef85252db4f54e886dd60d360c429793e55a7cd Mon Sep 17 00:00:00 2001 From: AravinthSundaramSF Date: Fri, 4 Sep 2026 16:45:11 +0530 Subject: [PATCH 2/3] Avoided redundant words in WinForms GridRecordNavigationControl --- ...port-for-RecordNavigationControl-in-GridGroupingControl.md | 2 +- WindowsForms/GridRecordNavigationControl/Getting-Started.md | 4 ++-- WindowsForms/GridRecordNavigationControl/Overview.md | 2 +- WindowsForms/GridRecordNavigationControl/Style.md | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/WindowsForms/GridRecordNavigationControl/Built-in-Navigation-Support-for-RecordNavigationControl-in-GridGroupingControl.md b/WindowsForms/GridRecordNavigationControl/Built-in-Navigation-Support-for-RecordNavigationControl-in-GridGroupingControl.md index 452864b64..a32654952 100644 --- a/WindowsForms/GridRecordNavigationControl/Built-in-Navigation-Support-for-RecordNavigationControl-in-GridGroupingControl.md +++ b/WindowsForms/GridRecordNavigationControl/Built-in-Navigation-Support-for-RecordNavigationControl-in-GridGroupingControl.md @@ -66,7 +66,7 @@ A demo of this feature is available in the following location: _\Syncfusion\EssentialStudio\[Version Number]\Windows\Grid.Grouping.Windows\Samples\Selection\Record Range Selection Demo_ -## Adding navigation Bar to the RecordNavigationControl +## Adding navigation Bar to the GridRecordNavigationControl Follow the steps to add navigation bar: diff --git a/WindowsForms/GridRecordNavigationControl/Getting-Started.md b/WindowsForms/GridRecordNavigationControl/Getting-Started.md index 2da82ac99..bb2055a8f 100644 --- a/WindowsForms/GridRecordNavigationControl/Getting-Started.md +++ b/WindowsForms/GridRecordNavigationControl/Getting-Started.md @@ -51,13 +51,13 @@ You can drag both Grid Record Navigation control and Grid control (either Grid c ![Grid-Record-Navigation-Control_images3](Creating-Grid-Record-Navigation-Control_images/Creating-Grid-Record-Navigation-Control_img3.jpeg) -5. Run the application. A GridRecordNavigation control will be created. +5. Run the application. A GridRecordNavigationControl will be created. ![Grid-Record-Navigation-Control_images4](Creating-Grid-Record-Navigation-Control_images/Creating-Grid-Record-Navigation-Control_img4.jpeg) ### Through code -Here is some minimal code necessary to create the GridRecordNavigation control. +Here is some minimal code necessary to create the GridRecordNavigationControl. {% tabs %} {% highlight c# %} diff --git a/WindowsForms/GridRecordNavigationControl/Overview.md b/WindowsForms/GridRecordNavigationControl/Overview.md index cddecf75b..450b0a517 100644 --- a/WindowsForms/GridRecordNavigationControl/Overview.md +++ b/WindowsForms/GridRecordNavigationControl/Overview.md @@ -9,7 +9,7 @@ documentation: ug # About Syncfusion® Windows Forms GridRecordNavigationControl -The GridRecordNavigation control allows you to navigate between records by using the Microsoft Access-like navigation bar at the bottom of the grid. It provides built-in support to navigate between the first, last, previous, and next record. +The GridRecordNavigationControl allows you to navigate between records by using the Microsoft Access-like navigation bar at the bottom of the grid. It provides built-in support to navigate between the first, last, previous, and next record. ## Key features diff --git a/WindowsForms/GridRecordNavigationControl/Style.md b/WindowsForms/GridRecordNavigationControl/Style.md index 7c956aacd..62737c085 100644 --- a/WindowsForms/GridRecordNavigationControl/Style.md +++ b/WindowsForms/GridRecordNavigationControl/Style.md @@ -9,7 +9,7 @@ documentation: ug # Style in Windows Forms GridRecordNavigationControl -The RecordNavigationControl supports Visual Styles like Default, Metro, and Office2016 by using the Style property. +The GridRecordNavigationControl supports Visual Styles like Default, Metro, and Office2016 by using the Style property. {% tabs %} {% highlight c# %} From d884c8969ac03d9710961bfeda5a4a43dc637dc5 Mon Sep 17 00:00:00 2001 From: AravinthSundaramSF Date: Fri, 4 Sep 2026 18:05:27 +0530 Subject: [PATCH 3/3] Avoided redundant words in WinForms Grouping --- Jenkinsfile | 24 ++++++++++++------------ WindowsForms/Grouping/Data-Binding.md | 4 ++-- WindowsForms/Grouping/Getting-Started.md | 6 +++--- WindowsForms/Grouping/Overview.md | 2 +- 4 files changed, 18 insertions(+), 18 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index c9f01b774..74347f7cb 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,4 +1,4 @@ -node('content') +node('GithubContent') { timestamps { @@ -18,9 +18,9 @@ String platform='Windows Forms'; checkout scm - def page = 1 - while(true) - { + def page = 1 + while(true) + { def branchCommit = 'https://api.github.com/repos/syncfusion-content/'+env.githubSourceRepoHttpUrl.split('/')[env.githubSourceRepoHttpUrl.split('/').size() - 1]+'/pulls/' + env.pullRequestId + '/files?per_page=100^&page='+ page String branchCommitDetails = bat returnStdout: true, script: 'curl -H "Accept: application/vnd.github.v3+json" -u SyncfusionBuild:' + env.GithubBuildAutomation_PrivateToken + " " + branchCommit @@ -30,14 +30,14 @@ String platform='Windows Forms'; { def ChangeFile= ChangeFiles[i].split(',')[0].replace('"', '') Content += env.WORKSPACE + "\\Spell-Checker\\" + ChangeFile + "\r\n"; - } - - // Last page - if((ChangeFiles.size() - 1) < 100) - { - break - } - page++ + } + + // Last page + if((ChangeFiles.size() - 1) < 100) + { + break + } + page++ } if (Content) { diff --git a/WindowsForms/Grouping/Data-Binding.md b/WindowsForms/Grouping/Data-Binding.md index 78675009e..8ec43e32e 100644 --- a/WindowsForms/Grouping/Data-Binding.md +++ b/WindowsForms/Grouping/Data-Binding.md @@ -216,10 +216,10 @@ End Sub ## Setting a Datasource In the Grouping Engine -Add the following grouping namespace for referring the assemblies deployed in the application. +Add the following Grouping namespace for referring the assemblies deployed in the application. - Refer Deploying Essential® Grouping section to know about deploying Essential® Grouping. + Refer to the Deploying Essential® Grouping section for details on deployment. {% tabs %} {% highlight c# %} diff --git a/WindowsForms/Grouping/Getting-Started.md b/WindowsForms/Grouping/Getting-Started.md index 3205d1134..7d3bc1f23 100644 --- a/WindowsForms/Grouping/Getting-Started.md +++ b/WindowsForms/Grouping/Getting-Started.md @@ -21,7 +21,7 @@ This section illustrates the step-by-step procedure to create the following plat 1. Open Microsoft Visual Studio. Go to File menu and click New Project. In the New Project dialog, select Windows Forms Application template, name the project and click OK. - ![WindowsForms Grouping Creating a Windows Application](Getting-Started_images/Getting-Started_img1.jpeg) + ![Creating a Windows Application](Getting-Started_images/Getting-Started_img1.jpeg) @@ -41,7 +41,7 @@ To know how to deploy a web application, refer the _ASP.NET Behind the scenes_ s - ![WindowsForms Grouping Creating an ASP.NET Application](Getting-Started_images/Getting-Started_img2.jpeg) + ![Creating an ASP.NET Application](Getting-Started_images/Getting-Started_img2.jpeg) @@ -64,7 +64,7 @@ To know how to deploy a web application, refer the _ASP.NET Behind the scenes_ s For More Information Refer: -[Deploying Essential® Grouping](#deploying-essential-grouping) +[Deploying](#deploying-essential-Grouping) ## Deploying Essential® Grouping diff --git a/WindowsForms/Grouping/Overview.md b/WindowsForms/Grouping/Overview.md index 697f50d00..030a12448 100644 --- a/WindowsForms/Grouping/Overview.md +++ b/WindowsForms/Grouping/Overview.md @@ -13,7 +13,7 @@ Essential® Grouping is a 100% Native .NET library that provides you Syncfusion® Essential® Grouping is a data technology that allows you to easily access, manipulate, and display your data in a variety of configurations. Your data source can be any IList object whose items have public properties. You can easily sort the items on one or several of these public properties. You can display and retrieve items based on the grouping that is produced through these sorts, you can include caption information and / or summary information on these groups; you can impose filters on the items, retrieving only items that specify your filter conditions and you can also add expression properties to display calculated values depending upon other properties in the item. -![windows forms grouping showing calculate the values](Overview_images/Overview_img1.jpeg) +![showing calculate the values](Overview_images/Overview_img1.jpeg) ## Key Features