diff --git a/WindowsForms/Split-Button/Appearance-Customization.md b/WindowsForms/Split-Button/Appearance-Customization.md
index 29afda541..d8e0cda0c 100644
--- a/WindowsForms/Split-Button/Appearance-Customization.md
+++ b/WindowsForms/Split-Button/Appearance-Customization.md
@@ -1,4 +1,4 @@
----
+---
layout: post
title: Appearance Customization in Windows Forms Split Button | Syncfusion
description: Appearance customization supports visual styles, custom rendering, and personalized dropdown item styling for SplitButton.
@@ -11,7 +11,7 @@ documentation: ug
## Visual style
-SplitButton supports visual style such as Office2016White,Office2016Black,Office2016DarkGray,Office2016Colorful,Default and Metro
+WinForms Split Button supports visual style such as Office2016White,Office2016Black,Office2016DarkGray,Office2016Colorful,Default and Metro
This style can be set using Style property
@@ -31,9 +31,9 @@ Me.splitButton1.Style = Syncfusion.Windows.Forms.Tools.SplitButtonVisualStyle.Of

-## Customization of SplitButton
+## Customization of WinForms Split Button
-You can customize appearance of the SplitButton using the ISplitButtonRenderer. This interface provides few methods to controlling painting borders, arrow and so on. To customize the appearance, create new custom renderer class and implement each of the members declared in ISplitButtonRenderer. And assign instance of your custom renderer to the Renderer property of SplitButton. By default, SplitButton will be painted using its default renderer.
+You can customize appearance of the WinForms Split Button using the ISplitButtonRenderer. This interface provides few methods to controlling painting borders, arrow and so on. To customize the appearance, create new custom renderer class and implement each of the members declared in ISplitButtonRenderer. And assign instance of your custom renderer to the Renderer property of WinForms Split Button. By default, WinForms Split Button will be painted using its default renderer.
The following code illustrates how to implement the ISplitButtonRenderer interface:
@@ -198,9 +198,9 @@ End Class

-* Customizing the SplitButton DropDownItems appearance
+* Customizing the WinForms Split Button DropDownItems appearance
-You can customize the appearance of the SplitButton DropDown Items by using the DropDownRenderer. By using this property, you can customize the appearance of the DropDownItems.
+You can customize the appearance of the WinForms Split Button DropDown Items by using the DropDownRenderer. By using this property, you can customize the appearance of the DropDownItems.
Refer the following code examples.
diff --git a/WindowsForms/Split-Button/Button-Caption.md b/WindowsForms/Split-Button/Button-Caption.md
index 65fd754d0..5a3ac6657 100644
--- a/WindowsForms/Split-Button/Button-Caption.md
+++ b/WindowsForms/Split-Button/Button-Caption.md
@@ -1,4 +1,4 @@
----
+---
layout: post
title: Button Caption in Windows Forms Split Button | Syncfusion
description: Button Caption support allows setting custom button text and updating captions based on selected dropdown items.
@@ -9,11 +9,11 @@ documentation: ug
# Button Caption in Windows Forms Split Button
-This feature enables you to name your SplitButton as needed.
+This feature enables you to name your WinForms Split Button as needed.
-## Adding caption to the SplitButton
+## Adding caption to the WinForms Split Button
-You can add a button caption to the SplitButton or set the selected item as the caption.
+You can add a button caption to the WinForms Split Button or set the selected item as the caption.
The following code illustrates how to add a caption for the button:
diff --git a/WindowsForms/Split-Button/Button-Mode.md b/WindowsForms/Split-Button/Button-Mode.md
index 87668a168..f11d59612 100644
--- a/WindowsForms/Split-Button/Button-Mode.md
+++ b/WindowsForms/Split-Button/Button-Mode.md
@@ -1,4 +1,4 @@
----
+---
layout: post
title: Button Mode in Windows Forms Split Button | Syncfusion
description: Button Mode supports normal and toggle behaviors, including configurable checked and unchecked button states.
@@ -51,7 +51,7 @@ Setting Button State for Toggle Mode
{% endhighlight %}
{% endtabs %}
-You can set the button state using the _IsButtonChecked_ property. When this is set to true button will be in _Checked_ state. When this is set to false button will be in Unchecked state. This Property will active only When this SplitButton in Toggle Mode.
+You can set the button state using the _IsButtonChecked_ property. When this is set to true button will be in _Checked_ state. When this is set to false button will be in Unchecked state. This Property will active only When this WinForms Split Button in Toggle Mode.
The following code illustrates how to set the button in checked state:
diff --git a/WindowsForms/Split-Button/Getting-Started.md b/WindowsForms/Split-Button/Getting-Started.md
index bdaf63c21..84aacabe6 100644
--- a/WindowsForms/Split-Button/Getting-Started.md
+++ b/WindowsForms/Split-Button/Getting-Started.md
@@ -9,7 +9,7 @@ documentation: ug
# Getting Started with Windows Forms SplitButton
-This section briefly describes how to create a new Windows Forms project in Visual Studio and add **"SplitButton"** with it's basic functionalities.
+This section briefly describes how to create a new Windows Forms project in Visual Studio and add **"WinForms Split Button"** with it's basic functionalities.
## Assembly deployment
@@ -17,9 +17,9 @@ Refer to the [control dependencies](https://help.syncfusion.com/windowsforms/con
[Check here](https://help.syncfusion.com/windowsforms/installation/install-nuget-packages) to find more details on how to install nuget packages in Windows Forms application.
-## Adding a SplitButton control through designer
+## Adding a WinForms Split Button control through designer
-**Step 1**: Create a new Windows Forms application in Visual Studio. Drag and drop the SplitButton from toolbox into form design view. The following dependent assemblies will be added automatically.
+**Step 1**: Create a new Windows Forms application in Visual Studio. Drag and drop the WinForms Split Button from toolbox into form design view. The following dependent assemblies will be added automatically.
* Syncfusion.Grid.Base
* Syncfusion.Grid.Windows
@@ -32,7 +32,7 @@ Refer to the [control dependencies](https://help.syncfusion.com/windowsforms/con

-**Step 2**: Set the desired properties for **"SplitButton"** control using the **"Properties"** dialog window. Similarly you can add the items for the SplitButton dropdown using **"DropDownItem"** property. Here, we have illustrated a simple example, in which we are adding countries names as dropdown items to the control.
+**Step 2**: Set the desired properties for **"WinForms Split Button"** control using the **"Properties"** dialog window. Similarly you can add the items for the WinForms Split Button dropdown using **"DropDownItem"** property. Here, we have illustrated a simple example, in which we are adding countries names as dropdown items to the control.

@@ -45,7 +45,7 @@ Refer to the [control dependencies](https://help.syncfusion.com/windowsforms/con

-## Adding a SplitButton control through code
+## Adding a WinForms Split Button control through code
**Step 1**: Create a new Windows Forms application in Visual Studio. Add the following required assembly references and namespace to the project.
@@ -78,7 +78,7 @@ Imports Syncfusion.Windows.Forms.Tools

-**Step 2**: In Form1.cs, create an instance of **"SplitButton"** control and add in to the form. Also you can customize the SplitButton properties using the following code.
+**Step 2**: In Form1.cs, create an instance of **"WinForms Split Button"** control and add in to the form. Also you can customize the WinForms Split Button properties using the following code.
{% capture codesnippet2 %}
{% tabs %}
@@ -128,7 +128,7 @@ End Sub
### Adding and removing item to dropdown list
-In SplitButton, we can add or remove items using **Add** and **Remove** methods of the **DropDownItems** **SplitButtonItemsCollection** property. The following code illustrates how to add and remove items in SplitButton.
+In WinForms Split Button, we can add or remove items using **Add** and **Remove** methods of the **DropDownItems** **SplitButtonItemsCollection** property. The following code illustrates how to add and remove items in WinForms Split Button.
{% tabs %}
diff --git a/WindowsForms/Split-Button/Overview.md b/WindowsForms/Split-Button/Overview.md
index a4a32e16c..6e7ddc08d 100644
--- a/WindowsForms/Split-Button/Overview.md
+++ b/WindowsForms/Split-Button/Overview.md
@@ -9,7 +9,7 @@ documentation: ug
# About Syncfusion® Windows Forms SplitButton Control
-The **"SplitButton"** control is like a combination of control that behaves like a Button and dropdown menu which provide access to create a dropdown button-like interface. Using this control, you can perform different operations with dropdown items as like menu hierarchy.
+The **"WinForms Split Button"** control is like a combination of control that behaves like a Button and dropdown menu which provide access to create a dropdown button-like interface. Using this control, you can perform different operations with dropdown items as like menu hierarchy.

@@ -17,7 +17,7 @@ The **"SplitButton"** control is like a combination of control that behaves like
**Button Mode** – Provides two types of mode: Normal and Toggle mode.
-**DropDown Item** - Provides support to add new items SplitButton dropdown list.
+**DropDown Item** - Provides support to add new items WinForms Split Button dropdown list.
**DropDown Position** - Provides support to change the dropdown list position.
diff --git a/WindowsForms/buttonedit/ButtonEditAppearance.md b/WindowsForms/buttonedit/ButtonEditAppearance.md
index fca4ec1b2..9ae956da1 100644
--- a/WindowsForms/buttonedit/ButtonEditAppearance.md
+++ b/WindowsForms/buttonedit/ButtonEditAppearance.md
@@ -1,4 +1,4 @@
----
+---
layout: post
title: Appearance in Windows Forms ButtonEdit | Syncfusion®
description: ButtonEdit Appearance supports customizing styles, colors, borders, sizing, themes, and text presentation for ButtonEdit controls.
@@ -9,25 +9,25 @@ documentation: ug
# Appearance in Windows Forms ButtonEdit
-A [ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control is a combination of controls with textbox and buttons. The ButtonEdit control supports properties which controls the appearance and behavior of the control.
+A [WinForms ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control is a combination of controls with textbox and buttons. The WinForms ButtonEdit control supports properties which controls the appearance and behavior of the control.
{% seealso %}
-[TextBox Settings for ButtonEdit](/windowsforms/buttonedit/textboxsettingsforbuttonedit), [Child Button Customization](http://help.syncfusion.com/windowsforms/buttonedit/textboxsettingsforbuttonedit)
+[TextBox Settings for WinForms ButtonEdit](/windowsforms/buttonedit/textboxsettingsforbuttonedit), [Child Button Customization](http://help.syncfusion.com/windowsforms/buttonedit/textboxsettingsforbuttonedit)
{% endseealso %}
## Style Settings
-The ButtonEdit control can be customized by following ways,
+The WinForms ButtonEdit control can be customized by following ways,
1. Button Styles.
-2. Custom Colors for ButtonEdit.
+2. Custom Colors for WinForms ButtonEdit.
3. Border Styles.
### Button Styles
-Styles for the [ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control can be applied using [ButtonStyle](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html#Syncfusion_Windows_Forms_Tools_ButtonEdit_ButtonStyle) property. [UseVisualStyle](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html#Syncfusion_Windows_Forms_Tools_ButtonEdit_UseVisualStyle) property must be enabled before applying style for ButtonEdit.
+Styles for the [WinForms ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control can be applied using [ButtonStyle](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html#Syncfusion_Windows_Forms_Tools_ButtonEdit_ButtonStyle) property. [UseVisualStyle](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html#Syncfusion_Windows_Forms_Tools_ButtonEdit_UseVisualStyle) property must be enabled before applying style for WinForms ButtonEdit.
@@ -84,11 +84,11 @@ Me.buttonEdit.ButtonStyle = Syncfusion.Windows.Forms.ButtonAppearance.Office2016

-N> [ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control also supports all the three windows color themes, i.e., Blue, Silver and Oliver themes. We need to change the Windows theme color in desktop properties for this.
+N> [WinForms ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control also supports all the three windows color themes, i.e., Blue, Silver and Oliver themes. We need to change the Windows theme color in desktop properties for this.
-### Custom Colors for ButtonEdit
+### Custom Colors for WinForms ButtonEdit
-You can apply custom colors to the [ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) Control by setting Office2007ColorScheme of individual child buttons to "_Managed_" and specifying the custom color through the ApplyManagedColors method as follows.
+You can apply custom colors to the [WinForms ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) Control by setting Office2007ColorScheme of individual child buttons to "_Managed_" and specifying the custom color through the ApplyManagedColors method as follows.
{% tabs %}
{% highlight c# %}
@@ -114,7 +114,7 @@ Office2007Colors.ApplyManagedColors(Me, Color.LightGreen)
### Border Styles
-The border styles for the [ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control can be customized using the [Border3DStyle](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html#Syncfusion_Windows_Forms_Tools_ButtonEdit_Border3DStyle), [BorderSides](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html#Syncfusion_Windows_Forms_Tools_ButtonEdit_BorderSides), [FlatStyle](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html#Syncfusion_Windows_Forms_Tools_ButtonEdit_FlatStyle) and [FlatBorderColor](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html#Syncfusion_Windows_Forms_Tools_ButtonEdit_FlatBorderColor) properties.
+The border styles for the [WinForms ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control can be customized using the [Border3DStyle](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html#Syncfusion_Windows_Forms_Tools_ButtonEdit_Border3DStyle), [BorderSides](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html#Syncfusion_Windows_Forms_Tools_ButtonEdit_BorderSides), [FlatStyle](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html#Syncfusion_Windows_Forms_Tools_ButtonEdit_FlatStyle) and [FlatBorderColor](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html#Syncfusion_Windows_Forms_Tools_ButtonEdit_FlatBorderColor) properties.
@@ -142,11 +142,11 @@ Specifies the sides of the control which should have border.
|
FlatStyle |
-Specifies the flat style to be applied to the ButtonEdit control. Set UseVisualStyle property to false to make this setting effective. |
+Specifies the flat style to be applied to the WinForms ButtonEdit control. Set UseVisualStyle property to false to make this setting effective.
|
FlatBorderColor |
-Specifies the border color for the control, when FlatStyle is set to "Flat". This color setting can be reset by calling ButtonEdit.ResetFlatBorderColor method. |
+Specifies the border color for the control, when FlatStyle is set to "Flat". This color setting can be reset by calling WinForms ButtonEdit.ResetFlatBorderColor method.
{% tabs %}
@@ -173,7 +173,7 @@ N> The Border styles of the child buttons can be controlled using [ButtonEditChi
## Size Settings
-You can set the maximum and minimum size for the [ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control using [MaximumSize](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html#Syncfusion_Windows_Forms_Tools_ButtonEdit_MaximumSize) and [MinimumSize](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html#Syncfusion_Windows_Forms_Tools_ButtonEdit_MinimumSize) properties.
+You can set the maximum and minimum size for the [WinForms ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control using [MaximumSize](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html#Syncfusion_Windows_Forms_Tools_ButtonEdit_MaximumSize) and [MinimumSize](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html#Syncfusion_Windows_Forms_Tools_ButtonEdit_MinimumSize) properties.
@@ -183,16 +183,16 @@ Description
|
MaximumSize |
-Sets the maximum size of the ButtonEdit control. |
+Sets the maximum size of the WinForms ButtonEdit control.
|
MinimumSize |
-Sets the minimum size of the ButtonEdit control. |
+Sets the minimum size of the WinForms ButtonEdit control.
## Foreground Settings
-The font style and the fore color of the [ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control can be customized by [Font](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html#) and [ForeColor](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html#Syncfusion_Windows_Forms_Tools_ButtonEdit_ForeColor) properties. These property settings can be overridden by TextBox.Font and TextBox.ForeColor respectively.
+The font style and the fore color of the [WinForms ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control can be customized by [Font](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html#) and [ForeColor](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html#Syncfusion_Windows_Forms_Tools_ButtonEdit_ForeColor) properties. These property settings can be overridden by TextBox.Font and TextBox.ForeColor respectively.
{% tabs %}
{% highlight c# %}
@@ -216,7 +216,7 @@ N> Foreground settings for the [ButtonEditChildButton](https://help.syncfusion.c
## Case Settings
-Using [CharacterCasing](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html#Syncfusion_Windows_Forms_Tools_ButtonEdit_CharacterCasing) property of [ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html), we can specify whether the case of the character can be modified as they are typed. The options are Upper, Lower and Normal.
+Using [CharacterCasing](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html#Syncfusion_Windows_Forms_Tools_ButtonEdit_CharacterCasing) property of [WinForms ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html), we can specify whether the case of the character can be modified as they are typed. The options are Upper, Lower and Normal.
{% tabs %}
{% highlight c# %}
@@ -240,6 +240,6 @@ N> This case setting can be overridden by TextBox.CharacterCasing property.
{% seealso %}
-[TextBox Settings for ButtonEdit](/windowsforms/buttonedit/textboxsettingsforbuttonedit), [Child Button Customization](http://help.syncfusion.com/windowsforms/buttonedit/textboxsettingsforbuttonedit)
+[TextBox Settings for WinForms ButtonEdit](/windowsforms/buttonedit/textboxsettingsforbuttonedit), [Child Button Customization](http://help.syncfusion.com/windowsforms/buttonedit/textboxsettingsforbuttonedit)
{% endseealso %}
diff --git a/WindowsForms/buttonedit/ButtonEditEvents.md b/WindowsForms/buttonedit/ButtonEditEvents.md
index 1b9071b6e..2f67ab6cb 100644
--- a/WindowsForms/buttonedit/ButtonEditEvents.md
+++ b/WindowsForms/buttonedit/ButtonEditEvents.md
@@ -1,4 +1,4 @@
----
+---
layout: post
title: Events in Windows Forms ButtonEdit | Syncfusion®
description: ButtonEdit events provide notifications for child button interactions, border changes, and custom event handling scenarios.
@@ -9,7 +9,7 @@ documentation: ug
# Events in Windows Forms ButtonEdit
-The [ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) events are discussed in the below sections.
+The [WinForms ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) events are discussed in the below sections.
## ButtonClicked Event
@@ -38,21 +38,21 @@ End Sub
## Border Events
-The [Border3DStyleChanged](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) and [BorderSidesChanged](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) events are raised whenever [Border3DStyle](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html#Syncfusion_Windows_Forms_Tools_ButtonEdit_Border3DStyle) and [BorderSides](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html#Syncfusion_Windows_Forms_Tools_ButtonEdit_BorderSides) properties values are changed in [ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control.
+The [Border3DStyleChanged](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) and [BorderSidesChanged](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) events are raised whenever [Border3DStyle](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html#Syncfusion_Windows_Forms_Tools_ButtonEdit_Border3DStyle) and [BorderSides](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html#Syncfusion_Windows_Forms_Tools_ButtonEdit_BorderSides) properties values are changed in [WinForms ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control.
|
-ButtonEdit Properties |
+WinForms ButtonEdit Properties |
Description |
|
Border3DStyleChanged |
-Raised when Border3DStyle property of ButtonEdit control is changed. |
+Raised when Border3DStyle property of WinForms ButtonEdit control is changed.
|
BorderSidesChanged |
-Raised when BorderSides property of ButtonEdit control is changed. |
+Raised when BorderSides property of WinForms ButtonEdit control is changed.
{% tabs %}
@@ -93,7 +93,7 @@ Description
|
Click |
-Occurs when the control is clicked. This event calls the ButtonEdit.HandleChildButtonClicked method. Using this method, we can access the corresponding control and customize it. |
+Occurs when the control is clicked. This event calls the WinForms ButtonEdit.HandleChildButtonClicked method. Using this method, we can access the corresponding control and customize it.
|
TextChanged |
@@ -121,14 +121,14 @@ Raised when the mouse pointer rests the control. This event calls HandleChildBut
|
|
BackColorChanged |
-Raised when BackColor property of the ButtonEdit control is changed. This event calls HandleChildButtonBackColorChanged method. Using this method, we can access the corresponding control and customize it. |
+Raised when BackColor property of the WinForms ButtonEdit control is changed. This event calls HandleChildButtonBackColorChanged method. Using this method, we can access the corresponding control and customize it.
## Click Event
-You can display CalendarPopup on [ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) Child button click event. It can be done using the below steps.
+You can display CalendarPopup on [WinForms ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) Child button click event. It can be done using the below steps.
-1. Drag and drop TableLayoutPanel and add ButtonEdit control on first row and resize to its fit.
+1. Drag and drop TableLayoutPanel and add WinForms ButtonEdit control on first row and resize to its fit.
2. Remove unwanted columns in TableLayoutPanel.
3. Create an instance of [CalendarPopup](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalendarPopup.html) and [MonthCalendarAdv](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.MonthCalendarAdv.html) control and add MonthCalendarAdv in CalendarPopup.
4. Add the CalendarPopup control in second row.
@@ -223,7 +223,7 @@ End Sub
{% endcapture %}
{{ codesnippet2 | OrderList_Indent_Level_1 }}
-6. The event DateSelected can also be handled to display the selected date in the textbox of ButtonEdit control.
+6. The event DateSelected can also be handled to display the selected date in the textbox of WinForms ButtonEdit control.
{% capture codesnippet3 %}
{% tabs %}
diff --git a/WindowsForms/buttonedit/ChildButtonCustomization.md b/WindowsForms/buttonedit/ChildButtonCustomization.md
index f05c6397f..97a7c2cdf 100644
--- a/WindowsForms/buttonedit/ChildButtonCustomization.md
+++ b/WindowsForms/buttonedit/ChildButtonCustomization.md
@@ -1,4 +1,4 @@
----
+---
layout: post
title: ChildButton Customization in Windows Forms ButtonEdit | Syncfusion®
description: Child Button Customization enables configuring button types, alignment, images, styles, focus behavior, and visibility in ButtonEdit.
@@ -9,17 +9,17 @@ documentation: ug
# ChildButton Customization in Windows Forms ButtonEdit
-The child buttons in a [ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control are normal windows button, but supports additional features within ButtonEdit control.
+The child buttons in a [WinForms ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control are normal windows button, but supports additional features within WinForms ButtonEdit control.
## Button Types and Border Styles
### Button Types
-The button types for child Buttons in [ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control are similar to that of [ButtonAdv](https://help.syncfusion.com/windowsforms/classic/button/overview) control. To learn more about [ButtonType](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEditChildButton.html#Syncfusion_Windows_Forms_Tools_ButtonEditChildButton_ButtonType) of [ButtonEditChildButton](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEditChildButton.html) [click here](https://help.syncfusion.com/windowsforms/classic/button/buttonadvappearnce#button-types).
+The button types for child Buttons in [WinForms ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control are similar to that of [ButtonAdv](https://help.syncfusion.com/windowsforms/classic/button/overview) control. To learn more about [ButtonType](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEditChildButton.html#Syncfusion_Windows_Forms_Tools_ButtonEditChildButton_ButtonType) of [ButtonEditChildButton](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEditChildButton.html) [click here](https://help.syncfusion.com/windowsforms/classic/button/buttonadvappearnce#button-types).
### Border Styles
-The border styles for the [ButtonEditChildButton](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEditChildButton.html) in [ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) can be set through [BorderStyleAdv](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.ButtonAdv.html#Syncfusion_Windows_Forms_ButtonAdv_BorderStyleAdv) property.
+The border styles for the [ButtonEditChildButton](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEditChildButton.html) in [WinForms ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) can be set through [BorderStyleAdv](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.ButtonAdv.html#Syncfusion_Windows_Forms_ButtonAdv_BorderStyleAdv) property.
@@ -29,7 +29,7 @@ Description
|
BorderStyleAdv |
-Specifies the border style for child buttons of the ButtonEdit control. The styles are,
+Specifies the border style for child buttons of the WinForms ButtonEdit control. The styles are,
None,
Default,
Dashed,
@@ -48,7 +48,7 @@ SunkenInner and
SunkenOuter.
|
-N> This setting will be effective only for Office2003, OfficeXP and WindowsXP styles set through [ButtonStyle](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html#Syncfusion_Windows_Forms_Tools_ButtonEdit_ButtonStyle) property of [ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control. We can also set border style for ButtonEdit controls without enabling visual styles.
+N> This setting will be effective only for Office2003, OfficeXP and WindowsXP styles set through [ButtonStyle](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html#Syncfusion_Windows_Forms_Tools_ButtonEdit_ButtonStyle) property of [WinForms ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control. We can also set border style for WinForms ButtonEdit controls without enabling visual styles.
{% tabs %}
{% highlight c# %}
@@ -70,13 +70,13 @@ Me.buttonEditChildButton1.BorderStyleAdv = Syncfusion.Windows.Forms.ButtonAdvBor
{% seealso %}
-[Style Settings](/windowsforms/buttonedit/buttoneditappearance#style-settings), [How to set tooltip for ButtonEdit Child buttons?](http://help.syncfusion.com/windowsforms/buttonedit/faq/how-to-set-tooltip-for-buttonedit-child-buttons)
+[Style Settings](/windowsforms/buttonedit/buttoneditappearance#style-settings), [How to set tooltip for WinForms ButtonEdit Child buttons?](http://help.syncfusion.com/windowsforms/buttonedit/faq/how-to-set-tooltip-for-buttonedit-child-buttons)
{% endseealso %}
## Button Alignment
-You can align the child buttons inside the [ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control is set through [ButtonAlign](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEditChildButton.html#Syncfusion_Windows_Forms_Tools_ButtonEditChildButton_ButtonAlign) property.
+You can align the child buttons inside the [WinForms ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control is set through [ButtonAlign](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEditChildButton.html#Syncfusion_Windows_Forms_Tools_ButtonEditChildButton_ButtonAlign) property.
@@ -86,7 +86,7 @@ Description
|
ButtonAlign |
-Specifies whether the child button should be aligned to left or right of the ButtonEdit control. |
+Specifies whether the child button should be aligned to left or right of the WinForms ButtonEdit control.
{% tabs %}
@@ -107,7 +107,7 @@ Me.buttonEditChildButton1.ButtonAlign = Syncfusion.Windows.Forms.Tools.ButtonAli
## Image and Text Settings
-The image and text of child buttons in [ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) can be customized by using [Image](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEditChildButton.html#Syncfusion_Windows_Forms_Tools_ButtonEditChildButton_Image), [ImageAlign](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEditChildButton.html#), [ImageIndex](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEditChildButton.html#), [ImageList](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEditChildButton.html#), [PreferredWidth](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEditChildButton.html#Syncfusion_Windows_Forms_Tools_ButtonEditChildButton_PreferredWidth), [Text](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.ButtonAdv.html#Syncfusion_Windows_Forms_ButtonAdv_Text), [TextAlign](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEditChildButton.html#) and [TextImageRelation](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEditChildButton.html#) properties.
+The image and text of child buttons in [WinForms ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) can be customized by using [Image](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEditChildButton.html#Syncfusion_Windows_Forms_Tools_ButtonEditChildButton_Image), [ImageAlign](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEditChildButton.html#), [ImageIndex](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEditChildButton.html#), [ImageList](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEditChildButton.html#), [PreferredWidth](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEditChildButton.html#Syncfusion_Windows_Forms_Tools_ButtonEditChildButton_PreferredWidth), [Text](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.ButtonAdv.html#Syncfusion_Windows_Forms_ButtonAdv_Text), [TextAlign](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEditChildButton.html#) and [TextImageRelation](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEditChildButton.html#) properties.
@@ -176,7 +176,7 @@ Me.buttonEditChildButton1.PreferredWidth = 64
## Flat Style for the Buttons
-You can customize the child button for flat style or appearance in [ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) using [FlatStyle](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEditChildButton.html#Syncfusion_Windows_Forms_Tools_ButtonEditChildButton_FlatStyle) and [FlatAppearance](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEditChildButton.html#) property.
+You can customize the child button for flat style or appearance in [WinForms ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) using [FlatStyle](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEditChildButton.html#Syncfusion_Windows_Forms_Tools_ButtonEditChildButton_FlatStyle) and [FlatAppearance](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEditChildButton.html#) property.
@@ -215,7 +215,7 @@ Me.buttonEditChildButton1.FlatAppearance.MouseOverBackColor = System.Drawing.Col
## Style Settings
-The visual style of child buttons can be set in ButtonEdit using [UseVisualStyleBackColor](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEditChildButton.html#), [Office2007ColorScheme](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.ButtonAdv.html#Syncfusion_Windows_Forms_ButtonAdv_Office2007ColorScheme) and [Office2010ColorScheme](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.ButtonAdv.html#Syncfusion_Windows_Forms_ButtonAdv_Office2010ColorScheme) properties.
+The visual style of child buttons can be set in WinForms ButtonEdit using [UseVisualStyleBackColor](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEditChildButton.html#), [Office2007ColorScheme](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.ButtonAdv.html#Syncfusion_Windows_Forms_ButtonAdv_Office2007ColorScheme) and [Office2010ColorScheme](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.ButtonAdv.html#Syncfusion_Windows_Forms_ButtonAdv_Office2010ColorScheme) properties.
@@ -237,7 +237,7 @@ Specifies the office2010 color scheme.
-N> Visual style of a child buttons is inherited from the visual style of it's parent [ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control. You can override those settings using the above properties.
+N> Visual style of a child buttons is inherited from the visual style of it's parent [WinForms ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control. You can override those settings using the above properties.
## Focusing the Child Button at Runtime
@@ -259,9 +259,9 @@ Me.buttonEditChildButton1.KeepFocusRectangle = True

-## Hide Child Button in ButtonEdit
+## Hide Child Button in WinForms ButtonEdit
-You can hide the child buttons of [ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control by using [HideButton](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html#Syncfusion_Windows_Forms_Tools_ButtonEdit_HideButton_System_Int32_System_Boolean_) method.
+You can hide the child buttons of [WinForms ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control by using [HideButton](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html#Syncfusion_Windows_Forms_Tools_ButtonEdit_HideButton_System_Int32_System_Boolean_) method.
diff --git a/WindowsForms/buttonedit/DesignTimeFeatures.md b/WindowsForms/buttonedit/DesignTimeFeatures.md
index 3d9cca20f..94abf8451 100644
--- a/WindowsForms/buttonedit/DesignTimeFeatures.md
+++ b/WindowsForms/buttonedit/DesignTimeFeatures.md
@@ -1,4 +1,4 @@
----
+---
layout: post
title: DesignTime Features in Windows Forms ButtonEdit control | Syncfusion®
description: Design-time features in ButtonEdit provide smart tag support for configuring appearance, images, borders, and child button collections.
@@ -9,7 +9,7 @@ documentation: ug
# DesignTime Features in Windows Forms ButtonEdit
-[ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control has Smart Tag, which lets you customize the properties easily.
+[WinForms ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control has Smart Tag, which lets you customize the properties easily.

diff --git a/WindowsForms/buttonedit/Getting-Started.md b/WindowsForms/buttonedit/Getting-Started.md
index 3ab7d44c0..dbba622f4 100644
--- a/WindowsForms/buttonedit/Getting-Started.md
+++ b/WindowsForms/buttonedit/Getting-Started.md
@@ -9,7 +9,7 @@ documentation: ug
# Getting Started with Windows Forms ButtonEdit
-This section briefly describes how to create a new Windows Forms project in Visual Studio and add [ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) with it's basic functionalities.
+This section briefly describes how to create a new Windows Forms project in Visual Studio and add [WinForms ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) with it's basic functionalities.
## Assembly deployment
@@ -17,33 +17,33 @@ Refer to the [control dependencies](https://help.syncfusion.com/windowsforms/con
[Check here](https://help.syncfusion.com/windowsforms/installation/install-nuget-packages) to find more details on how to install nuget packages in Windows Forms application.
-## Creating Application with ButtonEdit
-In this walk through, users will create WinForms application that contains [ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control.
+## Creating Application with WinForms ButtonEdit
+In this walk through, users will create WinForms application that contains [WinForms ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control.
### Creating the Project
-Create new Windows Forms Project in Visual Studio to display [ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control.
+Create new Windows Forms Project in Visual Studio to display [WinForms ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control.
-### Adding a ButtonEdit control through designer
+### Adding a WinForms ButtonEdit control through designer
-**Step 1**: Create a new Windows Forms application in Visual Studio. Drag and drop the [ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) from toolbox in Form designer window. The [dependent assemblies](https://help.syncfusion.com/windowsforms/control-dependencies#buttonedit) will be added automatically.
+**Step 1**: Create a new Windows Forms application in Visual Studio. Drag and drop the [WinForms ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) from toolbox in Form designer window. The [dependent assemblies](https://help.syncfusion.com/windowsforms/control-dependencies#buttonedit) will be added automatically.

-**Step 2**: Set the desired properties for [ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control using the **"Properties"** dialog window.
+**Step 2**: Set the desired properties for [WinForms ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control using the **"Properties"** dialog window.

-**Step 3**: You can add the child buttons for the [ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) using **ButtonEditChildButton Collection Editor"** dialog box.
+**Step 3**: You can add the child buttons for the [WinForms ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) using **ButtonEditChildButton Collection Editor"** dialog box.

-### Adding ButtonEdit control through Code
+### Adding WinForms ButtonEdit control through Code
-In order to add [ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control manually, do the below steps,
+In order to add [WinForms ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control manually, do the below steps,
1. Add the required [assembly references](https://help.syncfusion.com/windowsforms/control-dependencies#buttonedit) to the project.
-2. Create the [ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control instance and add it to the Form.
+2. Create the [WinForms ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control instance and add it to the Form.
{% capture codesnippet1 %}
{% tabs %}
@@ -101,9 +101,9 @@ End Sub

-## Embed the TextBox and ChildButtons in ButtonEdit control
+## Embed the TextBox and ChildButtons in WinForms ButtonEdit control
-[ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control is a combination of textbox and buttons. It contains [TextBox](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html#Syncfusion_Windows_Forms_Tools_ButtonEdit_TextBox) property to embed the instance of the textbox control. Also, we can set different types of textbox such as PercentTextBox, IntegerTextBox, etc. Meanwhile we can add child buttons in [Buttons](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html#Syncfusion_Windows_Forms_Tools_ButtonEdit_Buttons) collection.
+[WinForms ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control is a combination of textbox and buttons. It contains [TextBox](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html#Syncfusion_Windows_Forms_Tools_ButtonEdit_TextBox) property to embed the instance of the textbox control. Also, we can set different types of textbox such as PercentTextBox, IntegerTextBox, etc. Meanwhile we can add child buttons in [Buttons](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html#Syncfusion_Windows_Forms_Tools_ButtonEdit_Buttons) collection.
{% tabs %}
diff --git a/WindowsForms/buttonedit/Overview.md b/WindowsForms/buttonedit/Overview.md
index 3d6405bf4..9ccad9b6e 100644
--- a/WindowsForms/buttonedit/Overview.md
+++ b/WindowsForms/buttonedit/Overview.md
@@ -9,7 +9,7 @@ documentation: ug
# About Syncfusion® Windows Forms ButtonEdit Control
-The [ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control embeds a text box control with a collection of button controls that can be customized to create many commonly used interfaces such as a file / folder browser or a drop-down text control.
+The [WinForms ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control embeds a text box control with a collection of button controls that can be customized to create many commonly used interfaces such as a file / folder browser or a drop-down text control.

@@ -24,4 +24,4 @@ The [ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.
* **Appearance** - Supports wide variety of built-in themes and also has ability to customize all elements in control with respect to control state.
-* **Themes** - Supports set of visual styles to customize the look and feel of ButtonEdit control.
+* **Themes** - Supports set of visual styles to customize the look and feel of WinForms ButtonEdit control.
diff --git a/WindowsForms/buttonedit/TextBoxSettingsForButtonEdit.md b/WindowsForms/buttonedit/TextBoxSettingsForButtonEdit.md
index 4c7cd7d57..d6832d911 100644
--- a/WindowsForms/buttonedit/TextBoxSettingsForButtonEdit.md
+++ b/WindowsForms/buttonedit/TextBoxSettingsForButtonEdit.md
@@ -1,4 +1,4 @@
----
+---
layout: post
title: TextBoxSettings in Windows Forms ButtonEdit | Syncfusion®
description: TextBox settings for ButtonEdit allow replacing the embedded text box and configuring selection, visibility, and sizing behavior.
@@ -9,17 +9,17 @@ documentation: ug
# TextBoxSettings in Windows Forms ButtonEdit
-The default textbox within the [ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control can be replaced with any custom textbox like [PercentTextBox](https://help.syncfusion.com/windowsforms/percent-textbox/overview), [IntegerTextBox](https://help.syncfusion.com/windowsforms/integer-textbox/overview), and so on. The embedded textbox of a ButtonEdit control can shown by [ShowTextBox](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html#Syncfusion_Windows_Forms_Tools_ButtonEdit_ShowTextBox) property and customized by [SelectionLength](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html#Syncfusion_Windows_Forms_Tools_ButtonEdit_SelectionLength) and [SelectionStart](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html#Syncfusion_Windows_Forms_Tools_ButtonEdit_SelectionStart) properties.
+The default textbox within the [WinForms ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control can be replaced with any custom textbox like [PercentTextBox](https://help.syncfusion.com/windowsforms/percent-textbox/overview), [IntegerTextBox](https://help.syncfusion.com/windowsforms/integer-textbox/overview), and so on. The embedded textbox of a WinForms ButtonEdit control can shown by [ShowTextBox](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html#Syncfusion_Windows_Forms_Tools_ButtonEdit_ShowTextBox) property and customized by [SelectionLength](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html#Syncfusion_Windows_Forms_Tools_ButtonEdit_SelectionLength) and [SelectionStart](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html#Syncfusion_Windows_Forms_Tools_ButtonEdit_SelectionStart) properties.
|
-ButtonEdit Properties |
+WinForms ButtonEdit Properties |
Description |
|
ShowTextBox |
-Indicates whether the embedded TextBox is visible in the ButtonEdit control. This property setting can be reset to default by calling ResetShowTextBox method. |
+Indicates whether the embedded TextBox is visible in the WinForms ButtonEdit control. This property setting can be reset to default by calling ResetShowTextBox method.
|
SelectionLength |
@@ -27,7 +27,7 @@ Sets the selection length of the embedded TextBox. This property setting can be
|
|
SelectionStart |
-Sets the SelectionStart property of the ButtonEdit control which is same as the TextBoxBase.SelectionStart of the embedded TextBox. This property setting can be reset to default by calling ResetSelectionStart method. |
+Sets the SelectionStart property of the WinForms ButtonEdit control which is same as the TextBoxBase.SelectionStart of the embedded TextBox. This property setting can be reset to default by calling ResetSelectionStart method.
{% tabs %}
@@ -48,6 +48,6 @@ Me.buttonEdit1.ShowTexBox = True
{%endhighlight%}
{% endtabs %}
- N> To increase the height of the [ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control, by enabling the Multiline property of `ButtonEdit.TextBox`.
+ N> To increase the height of the [WinForms ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control, by enabling the Multiline property of `ButtonEdit.TextBox`.

diff --git a/WindowsForms/buttonedit/faq/How-to-replace-the-default-TextBox-in-a-ButtonEdit-control.md b/WindowsForms/buttonedit/faq/How-to-replace-the-default-TextBox-in-a-ButtonEdit-control.md
index 43dc32d2f..d4583f3a5 100644
--- a/WindowsForms/buttonedit/faq/How-to-replace-the-default-TextBox-in-a-ButtonEdit-control.md
+++ b/WindowsForms/buttonedit/faq/How-to-replace-the-default-TextBox-in-a-ButtonEdit-control.md
@@ -9,13 +9,13 @@ documentation: ug
# How to Replace the Default TextBox in Windows Forms ButtonEdit
-You can replace the default TextBox of the [ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control with other TextBox by doing the following steps.
+You can replace the default TextBox of the [WinForms ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control with other TextBox by doing the following steps.
-1. Drag a ButtonEdit control and a [PercentTextBox](https://help.syncfusion.com/windowsforms/percent-textbox/overview) control that you would like to replace with the default TextBox of the ButtonEdit control.
+1. Drag a WinForms ButtonEdit control and a [PercentTextBox](https://help.syncfusion.com/windowsforms/percent-textbox/overview) control that you would like to replace with the default TextBox of the WinForms ButtonEdit control.

-2. From the property window of ButtonEdit, select the PercentTextBox to be the TextBox control of the ButtonEdit control.
+2. From the property window of WinForms ButtonEdit, select the PercentTextBox to be the TextBox control of the WinForms ButtonEdit control.
{% capture codesnippet1 %}
{% tabs %}
@@ -36,7 +36,7 @@ buttonEdit.TextBox = new PercentTextBox()

-3. From the same properties window, you can set the percent properties for the ButtonEdit control.
+3. From the same properties window, you can set the percent properties for the WinForms ButtonEdit control.

diff --git a/WindowsForms/buttonedit/faq/How-to-set-tooltip-for-ButtonEdit-Child-buttons.md b/WindowsForms/buttonedit/faq/How-to-set-tooltip-for-ButtonEdit-Child-buttons.md
index 7b19c2580..841d8af2e 100644
--- a/WindowsForms/buttonedit/faq/How-to-set-tooltip-for-ButtonEdit-Child-buttons.md
+++ b/WindowsForms/buttonedit/faq/How-to-set-tooltip-for-ButtonEdit-Child-buttons.md
@@ -9,11 +9,11 @@ documentation: ug
# How to Set Tooltips for Child Buttons in Windows Forms ButtonEdit
- To set tooltip for a child button in a [ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control, drag and drop a [SfToolTip](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.SfToolTip.html) control from the toolbox. Text for tooltip is set using the extender property of the particular child button in Properties window.
+ To set tooltip for a child button in a [WinForms ButtonEdit](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.ButtonEdit.html) control, drag and drop a [SfToolTip](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.SfToolTip.html) control from the toolbox. Text for tooltip is set using the extender property of the particular child button in Properties window.

-You can also set the Tooltip for ButtonEdit control programmatically using its [SetToolTip](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.SfToolTip.html#Syncfusion_Windows_Forms_SfToolTip_SetToolTip_System_Windows_Forms_Control_System_String_) method of SfToolTip control.
+You can also set the Tooltip for WinForms ButtonEdit control programmatically using its [SetToolTip](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.SfToolTip.html#Syncfusion_Windows_Forms_SfToolTip_SetToolTip_System_Windows_Forms_Control_System_String_) method of SfToolTip control.
{% tabs %}
{%highlight c#%}