From b9b83ebd876392a06095ad0e80bfc579ccb113b4 Mon Sep 17 00:00:00 2001 From: Madhavansf Date: Tue, 1 Sep 2026 23:29:29 +0530 Subject: [PATCH 1/5] Updated the Primary Keyword Correction for WPF Button and GridSplitter --- wpf/Button/Events.md | 8 ++--- wpf/Button/Getting-Started.md | 26 ++++++++-------- wpf/Button/MVVM.md | 6 ++-- wpf/Button/Multiline-Text-Support.md | 8 ++--- wpf/Button/Overview.md | 10 +++---- wpf/Button/Styles-and-Templates.md | 16 +++++----- wpf/Button/Themes.md | 4 +-- wpf/Button/Toggle-State.md | 6 ++-- wpf/GridSplitter/Appearance.md | 16 +++++----- wpf/GridSplitter/Getting-Started.md | 44 ++++++++++++++-------------- wpf/GridSplitter/Overview.md | 4 +-- 11 files changed, 74 insertions(+), 74 deletions(-) diff --git a/wpf/Button/Events.md b/wpf/Button/Events.md index af5a112e0..35f4128fc 100644 --- a/wpf/Button/Events.md +++ b/wpf/Button/Events.md @@ -1,7 +1,7 @@ --- layout: post title: Events in WPF Button | Syncfusion® -description: Events in ButtonAdv provide notifications for user interactions, command execution, and button state changes. +description: Events in WPF Button provide notifications for user interactions, command execution, and WPF Button state changes. platform: wpf control: ButtonAdv documentation: ug @@ -9,11 +9,11 @@ documentation: ug # Events in WPF Button (ButtonAdv) -The ButtonAdv comprises of the pre-defined events that are illustrated below. +The WPF Button comprises of the pre-defined events that are illustrated below. ## Click -The events occurs when the button control is clicked and any action can be handled in the respective event handler. +The events occurs when the WPF Button control is clicked and any action can be handled in the respective event handler. {% tabs %} {% highlight xaml %} @@ -36,7 +36,7 @@ private void button_Click(object sender, RoutedEventArgs e) ## Checked -The event occurs when the button control is utilized as toggle button, that is, when [IsCheckable](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_IsCheckable) property value is set to **true**. Any action can be handled in the respective event handler. +The event occurs when the WPF Button control is utilized as ToggleButton, that is, when [IsCheckable](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_IsCheckable) property value is set to **true**. Any action can be handled in the respective event handler. {% tabs %} {% highlight xaml %} diff --git a/wpf/Button/Getting-Started.md b/wpf/Button/Getting-Started.md index a1376fe3a..a14a094b1 100644 --- a/wpf/Button/Getting-Started.md +++ b/wpf/Button/Getting-Started.md @@ -17,11 +17,11 @@ This section provides an overview of how to work with [WPF Button](https://www.s ## Assembly deployment -Refer [ButtonAdv](https://help.syncfusion.com/wpf/control-dependencies#buttonadv) control dependencies section to get the list of assemblies or [NuGet package](https://help.syncfusion.com/wpf/installation/install-nuget-packages) needs to be added as reference to use the ButtonAdv control in any application. +Refer [WPF Button](https://help.syncfusion.com/wpf/control-dependencies#buttonadv) control dependencies section to get the list of assemblies or [NuGet package](https://help.syncfusion.com/wpf/installation/install-nuget-packages) needs to be added as reference to use the ButtonAdv control in any application. -## Creating simple application with Button +## Creating simple application with WPF Button -In this walk through, will create WPF application that contains Button control. By the following ways, one can add the controls: +In this walk through, will create WPF application that contains WPF Button control. By the following ways, one can add the controls: 1. [Adding control via designer](#adding-control-via-designer) @@ -133,7 +133,7 @@ using Syncfusion.Windows.Tools.Controls; ## Setting label -The label on the button is a text that explains its action to the end-user. Apply the text by using the [Label](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_Label) property. +The label on the WPF Button is a text that explains its action to the end-user. Apply the text by using the [Label](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_Label) property. {% tabs %} {% highlight xaml %} @@ -155,7 +155,7 @@ button.SmallIcon = new BitmapImage(new Uri("image/usersmall.png" , UriKind.Relat ## Setting size mode -Size mode is used to render button control in different pre-defined sizes based on application demand. Apply the size mode by setting the [SizeMode](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_SizeMode) property. +Size mode is used to render WPF Button control in different pre-defined sizes based on application demand. Apply the size mode by setting the [SizeMode](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_SizeMode) property. The **SizeMode** is an enumeration which contains the following values: @@ -187,7 +187,7 @@ button.SmallIcon = new BitmapImage(new Uri("image/usersmall.png", UriKind.Relati ### Normal mode -In a normal size button, a small image with the text on the side will be displayed. +In a normal size WPF Button, a small image with the text on the side will be displayed. {% tabs %} {% highlight xaml %} @@ -209,7 +209,7 @@ button.SmallIcon = new BitmapImage(new Uri("image/usersmall.png", UriKind.Relati ### Large mode -In a large size button, a large image along with the text at the bottom will be displayed. +In a large size WPF Button, a large image along with the text at the bottom will be displayed. {% tabs %} {% highlight xaml %} @@ -292,7 +292,7 @@ The [IconTemplate](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.C ![Setting icon template](Getting-Started_images/Getting-Started_img12.png) - N> The [ButtonAdv](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html) loads the icon in the following priority order. + N> The [WPF Button](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html) loads the icon in the following priority order. * [IconTemplate](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_IconTemplate) * [LargeIcon](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_LargeIcon) * [SmallIcon](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_SmallIcon) @@ -404,7 +404,7 @@ The [IconTemplate](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.C ![IconTemplateSelector in WPF Button](Getting-Started_images/Getting-Started_IconTemplateSelector.gif) - N> The [ButtonAdv](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html) loads the icon in the following priority order. + N> The [WPF Button](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html) loads the icon in the following priority order. * [IconTemplateSelector](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_IconTemplateSelector) * [IconTemplate](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_IconTemplate) * [LargeIcon](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_LargeIcon) @@ -412,7 +412,7 @@ The [IconTemplate](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.C ## Setting image -The image option helps to provide pictorial representation of the button. Image can be added either using the [SmallIcon](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_SmallIcon) property or [LargeIcon](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_LargeIcon) property. +The image option helps to provide pictorial representation of the WPF Button. Image can be added either using the [SmallIcon](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_SmallIcon) property or [LargeIcon](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_LargeIcon) property. **SmallIcon** — This property will be used to set the image when size mode is **Normal** or **Small**. **LargeIcon** — This property will be used to set the image when size mode is **Large**. @@ -545,11 +545,11 @@ button.SmallIcon = new BitmapImage(new Uri("image/syncfusion.png", UriKind.Relat {% endtabs %} -![Corner Radius in ButtonAdv](Getting-Started_images/Getting-Started_CornerRadius.png) +![Corner Radius in WPF Button](Getting-Started_images/Getting-Started_CornerRadius.png) ## IsDefault mode -The [IsDefault](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_IsDefault) property indicates whether the ButtonAdv is a Default button and is used to activate the ButtonAdv by pressing using Enter key. When setting the IsDefault property to true, the user can invoke the button by pressing the `Enter` key. +The [IsDefault](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_IsDefault) property indicates whether the WPF Button is a Default Button and is used to activate the Button by pressing using Enter key. When setting the IsDefault property to true, the user can invoke the Button by pressing the `Enter` key. {% tabs %} @@ -563,7 +563,7 @@ The [IsDefault](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Cont ## IsCancel mode -The [IsCancel](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_IsCancel) property indicates whether the ButtonAdv is a Cancel button and is used to activate the button by using Escape key. When setting the IsCancel property to true, the user can invoke the button by pressing the `Escape` key. +The [IsCancel](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_IsCancel) property indicates whether the WPF Button is a Cancel Button and is used to activate the Button by using Escape key. When setting the IsCancel property to true, the user can invoke the Button by pressing the `Escape` key. {% tabs %} diff --git a/wpf/Button/MVVM.md b/wpf/Button/MVVM.md index d0fbb71c1..06ab01502 100644 --- a/wpf/Button/MVVM.md +++ b/wpf/Button/MVVM.md @@ -1,7 +1,7 @@ --- layout: post title: MVVM in WPF Button | Syncfusion® -description: MVVM support in Button (ButtonAdv) enables seamless integration with commands, bindings, and view models. +description: MVVM support in WPF Button (ButtonAdv) enables seamless integration with commands, bindings, and view models. platform: wpf control: ButtonAdv documentation: ug @@ -9,7 +9,7 @@ documentation: ug # MVVM in WPF Button (ButtonAdv) -The command and command parameter properties allow to execute any action on clicking the button control. +The command and command parameter properties allow to execute any action on clicking the WPF Button control. * **Command** - The [Command](https://learn.microsoft.com/en-us/dotnet/api/system.windows.input.icommandsource.command?view=netframework-4.8) property accept all commands derived from interface [ICommand](https://learn.microsoft.com/en-us/dotnet/api/system.windows.input.icommand?view=netframework-4.8). * **CommandParameter** - The [CommandParameter](https://learn.microsoft.com/en-us/dotnet/api/system.windows.input.icommandsource.commandparameter?view=netframework-4.8) property allows the user to provide additional data required in the command handler in-order to perform any operation. @@ -168,4 +168,4 @@ public class ButtonViewModel : NotificationObject {% endhighlight %} {% endtabs %} -N> View [sample](https://github.com/SyncfusionExamples/wpf-button-examples/blob/master/Samples/MVVM) in GitHub. This sample showcases how to bind commands to the `ButtonAdv` control. +N> View [sample](https://github.com/SyncfusionExamples/wpf-button-examples/blob/master/Samples/MVVM) in GitHub. This sample showcases how to bind commands to the `WPF Button` control. diff --git a/wpf/Button/Multiline-Text-Support.md b/wpf/Button/Multiline-Text-Support.md index 28bcb731f..97cee7a18 100644 --- a/wpf/Button/Multiline-Text-Support.md +++ b/wpf/Button/Multiline-Text-Support.md @@ -1,7 +1,7 @@ --- layout: post title: Multiline Text Support in WPF Button | Syncfusion® -description: Multiline text support in Button (ButtonAdv) enables displaying button content across multiple lines. +description: Multiline text support in WPF Button (ButtonAdv) enables displaying Button content across multiple lines. platform: wpf control: ButtonAdv documentation: ug @@ -9,9 +9,9 @@ documentation: ug # Multiline Text in WPF Button (ButtonAdv) -Multiline support is used to render text content of the Button control in multiple lines for precise view. One can apply the multiline text by using the [IsMultiLine](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_IsMultiLine) property. +Multiline support is used to render text content of the WPF Button control in multiple lines for precise view. One can apply the multiline text by using the [IsMultiLine](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_IsMultiLine) property. -N> This property is only applicable for large size mode button. +N> This property is only applicable for large size mode WPF Button. {% tabs %} {% highlight XAML %} @@ -30,4 +30,4 @@ button.Label = "Sign in with your Syncfusion Account"; {% endhighlight %} {% endtabs %} -![WPF ButtonAdv MultiLine](Multi-Line-Support_images/Multi-Line-Support_img1.png) +![WPF Button MultiLine](Multi-Line-Support_images/Multi-Line-Support_img1.png) diff --git a/wpf/Button/Overview.md b/wpf/Button/Overview.md index 95a57941e..1cd4edb1b 100644 --- a/wpf/Button/Overview.md +++ b/wpf/Button/Overview.md @@ -9,19 +9,19 @@ documentation: ug # About Syncfusion® WPF Button (ButtonAdv) Control -The Button (or ButtonAdv) is a basic button control with image options and multi-line support which is used to design complex forms and applications. The control is shipped with a commanding support that provides compatibility in MVVM design pattern by attaching commands to the control, which will get executed when it gets clicked. +The WPF Button (or ButtonAdv) is a basic Button control with image options and multi-line support which is used to design complex forms and applications. The control is shipped with a commanding support that provides compatibility in MVVM design pattern by attaching commands to the control, which will get executed when it gets clicked. ## Key features -* **Size Mode** - Predefined sizes, such as small, normal and large, can be set to the button. +* **Size Mode** - Predefined sizes, such as small, normal and large, can be set to the WPF Button. -* **Image** - Provides options for loading image in button. +* **Image** - Provides options for loading image in WPF Button. * **Command Binding** - Provides support to execute any action on clicking the instance. -* **Multiline** - Provides support for displaying multiple lines of text in large button. +* **Multiline** - Provides support for displaying multiple lines of text in large WPF Button. -* **Checkable** - Provides support for clicking the button that looks like the toggle button. +* **Checkable** - Provides support for clicking the WPF Button that looks like the ToggleButton. * **Localization** - Provides support to customize the text in the user interface based on the local culture. diff --git a/wpf/Button/Styles-and-Templates.md b/wpf/Button/Styles-and-Templates.md index f3e722c5d..345c9eded 100644 --- a/wpf/Button/Styles-and-Templates.md +++ b/wpf/Button/Styles-and-Templates.md @@ -1,7 +1,7 @@ --- layout: post title: Styles and Templates in WPF Button | Syncfusion® -description: Styles and templates in Button (ButtonAdv) enable complete customization of button appearance and structure. +description: Styles and templates in WPF Button (ButtonAdv) enable complete customization of Button appearance and structure. platform: wpf control: ButtonAdv documentation: ug @@ -16,11 +16,11 @@ This document provides information to change the visual appearance of the Button ## Edit appearance in Expression Blend * Open the application in Expression Blend. -* Select the Button control from the window. +* Select the WPF Button control from the window. ![Blendability](Blendability_images/Blendability_img1.png) -* Right click on the button control and choose the menu option **Edit Template**. It will comprise of following two options. +* Right click on the WPF Button control and choose the menu option **Edit Template**. It will comprise of following two options. * **Edit a Copy...** – Edit a copy of the default style. When selecting this option, a new dialog opens as follows. ![Blendability](Blendability_images/Blendability_img2.png) @@ -29,7 +29,7 @@ This document provides information to change the visual appearance of the Button The **Create Style Resource** dialog allows to enter the name or change the style name, as well as choose the location for the style. When **OK** is pressed, the Button control style is generated by the Expression Blend in the **Resource** section. The generated XAML can be edited in XAML view or in Visual Studio. - * **Create Empty...** - Creates an empty button style. Selecting this option will open the **Create ControlTemplate Resource** dialog which allows the user to enter the name or change the control template name, as well as choose the location for the template. + * **Create Empty...** - Creates an empty WPF Button style. Selecting this option will open the **Create ControlTemplate Resource** dialog which allows the user to enter the name or change the control template name, as well as choose the location for the template. All resources will be displayed on the XAML file of the application after performing above steps. These resources can be edited to create a new Style. @@ -37,13 +37,13 @@ All resources will be displayed on the XAML file of the application after perfor ![Blendability](Blendability_images/Blendability_img4.png) -Button control edited in Expression Blend +WPF Button control edited in Expression Blend {:.caption} ## Edit appearance in Visual Studio * Open the application in Visual Studio. -* Open design view and select the Button control. Now right Click on the Button control and you can see some menu options showing up. +* Open design view and select the WPF Button control. Now right Click on the Button control and you can see some menu options showing up. ![Blendability](Blendability_images/Blendability_img6.png) @@ -54,9 +54,9 @@ Button control edited in Expression Blend ![Blendability](Blendability_images/Blendability_img8.png) - The **Create ControlTemplate Resource** dialog allows to enter the name or change the control template name, as well as choose the location for the template. When **OK** is pressed, the Button control template is generated in the **Resource** section. The generated XAML can be edited in XAML view. + The **Create ControlTemplate Resource** dialog allows to enter the name or change the control template name, as well as choose the location for the template. When **OK** is pressed, the WPF Button control template is generated in the **Resource** section. The generated XAML can be edited in XAML view. - * **Create Empty...** - Creates an empty Button style. Selecting this option will open the **Create ControlTemplate Resource** dialog which allows the user to enter the name or change the control template name, as well as choose the location for the template. + * **Create Empty...** - Creates an empty WPF Button style. Selecting this option will open the **Create ControlTemplate Resource** dialog which allows the user to enter the name or change the control template name, as well as choose the location for the template. All resources will be displayed on the XAML file of the application after performing above steps. These resources can be edited to create a new Style. diff --git a/wpf/Button/Themes.md b/wpf/Button/Themes.md index f4878b959..3f29b0604 100644 --- a/wpf/Button/Themes.md +++ b/wpf/Button/Themes.md @@ -1,7 +1,7 @@ --- layout: post title: Themes in WPF Button | Syncfusion® -description: Themes in Button (ButtonAdv) provide consistent visual styles that align with application design requirements. +description: Themes in WPF Button (ButtonAdv) provide consistent visual styles that align with application design requirements. platform: wpf control: ButtonAdv documentation: ug @@ -9,7 +9,7 @@ documentation: ug # Themes in WPF Button (ButtonAdv) -Button supports various built-in themes. Refer to the below links to apply themes for the Button, +The WPF Button supports various built-in themes. Refer to the below links to apply themes for the WPF Button, * [Apply theme using SfSkinManager](https://help.syncfusion.com/wpf/themes/skin-manager) diff --git a/wpf/Button/Toggle-State.md b/wpf/Button/Toggle-State.md index a18a10208..da108c96e 100644 --- a/wpf/Button/Toggle-State.md +++ b/wpf/Button/Toggle-State.md @@ -1,7 +1,7 @@ --- layout: post title: Toggle State in WPF Button | Syncfusion® -description: Toggle State in Button (ButtonAdv) enables buttons to maintain checked and unchecked states using the IsCheckable and IsChecked properties. +description: Toggle State in WPF Button (ButtonAdv) enables buttons to maintain checked and unchecked states using the IsCheckable and IsChecked properties. platform: wpf control: ButtonAdv documentation: ug @@ -9,9 +9,9 @@ documentation: ug # Toggle State in WPF Button (ButtonAdv) -The button control can also be used as a toggle button, similar to the on/off view when the [IsCheckable](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_IsCheckable) property is set to **true**. The default value of this property is **false**. +The WPF Button control can also be used as a ToggleButton, similar to the on/off view when the [IsCheckable](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_IsCheckable) property is set to **true**. The default value of this property is **false**. -N> In addition to [IsCheckable](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_IsCheckable) property, the [IsChecked](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_IsChecked) property helps to check the button by default. In other words, during initial rendering, the button will appear in **on** state using the later property. +N> In addition to [IsCheckable](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_IsCheckable) property, the [IsChecked](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_IsChecked) property helps to check the WPF Button by default. In other words, during initial rendering, the WPF Button will appear in **on** state using the later property. {% tabs %} {% highlight xaml %} diff --git a/wpf/GridSplitter/Appearance.md b/wpf/GridSplitter/Appearance.md index 8957e47a5..9c9a69628 100644 --- a/wpf/GridSplitter/Appearance.md +++ b/wpf/GridSplitter/Appearance.md @@ -1,7 +1,7 @@ --- layout: post title: Appearance in WPF GridSplitter | Syncfusion® -description: Customize the appearance of GridSplitter (SfGridSplitter) with background styling, preview customization, themes, and visual enhancements. +description: Customize the appearance of WPF GridSplitter (SfGridSplitter) with background styling, preview customization, themes, and visual enhancements. platform: wpf control: SfGridSplitter documentation: ug @@ -9,11 +9,11 @@ documentation: ug # Appearance in WPF GridSplitter (SfGridSplitter) -This section explains different UI customization and styling support available in [SfGridSplitter](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Input.SfGridSplitter.html) control. +This section explains different UI customization and styling support available in [WPF GridSplitter](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Input.SfGridSplitter.html) control. ## Setting the Background -We can change the background color of `SfGridSplitter` by setting the `Background` property. The default color value of `Background` property is `Light Gray`. +We can change the background color of `WPF GridSplitter` by setting the `Background` property. The default color value of `Background` property is `Light Gray`. {% tabs %} {% highlight XAML %} @@ -53,13 +53,13 @@ We can change the background color of `SfGridSplitter` by setting the `Backgroun {% endhighlight %} {% endtabs %} -![SfGridSplitter with green background](Positioning-GridSplitter-images/Background.png) +![WPF GridSplitter with green background](Positioning-GridSplitter-images/Background.png) N> [View Sample in GitHub](https://github.com/SyncfusionExamples/syncfusion-gridsplitter-control-examples/tree/master/Samples/Appearance) ### Custom drag preview -We can change the custom UI of the preview grid splitter by using the [SfGridSplitter.PreviewStyle](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Input.SfGridSplitter.html) property. We can see the effect of `PreviewStyle` only on when `ShowsPreview` property value is `true`. +We can change the custom UI of the preview WPF GridSplitter by using the [SfGridSplitter.PreviewStyle](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Input.SfGridSplitter.html) property. We can see the effect of `PreviewStyle` only on when `ShowsPreview` property value is `true`. {% tabs %} {% highlight XAML %} @@ -113,16 +113,16 @@ We can change the custom UI of the preview grid splitter by using the [SfGridSpl {% endhighlight %} {% endtabs %} -![SfGridSplitter with ellipse shape preview grid splitter](Positioning-GridSplitter-images/PreviewStyle.gif) +![WPF GridSplitter with ellipse shape preview GridSplitter](Positioning-GridSplitter-images/PreviewStyle.gif) N> [View Sample in GitHub](https://github.com/SyncfusionExamples/syncfusion-gridsplitter-control-examples/tree/master/Samples/Appearance) ## Theme -SfGridSplitter supports various built-in themes. Refer to the below links to apply themes for the SfGridSplitter, +The WPF GridSplitter supports various built-in themes. Refer to the below links to apply themes for the WPF GridSplitter, * [Apply theme using SfSkinManager](https://help.syncfusion.com/wpf/themes/skin-manager) * [Create a custom theme using ThemeStudio](https://help.syncfusion.com/wpf/themes/theme-studio#creating-custom-theme) - ![Setting theme to WPF SfGridSplitter](Getting-Started-images/WPF-Grid-Splitter-theme-support.png) + ![Setting theme to WPF GridSplitter](Getting-Started-images/WPF-Grid-Splitter-theme-support.png) diff --git a/wpf/GridSplitter/Getting-Started.md b/wpf/GridSplitter/Getting-Started.md index c102f0916..ed44d0502 100644 --- a/wpf/GridSplitter/Getting-Started.md +++ b/wpf/GridSplitter/Getting-Started.md @@ -9,15 +9,15 @@ documentation: ug # Getting Started with WPF GridSplitter (SfGridSplitter) -This section explains how to create a [WPF GridSplitter](https://www.syncfusion.com/wpf-controls/gridsplitter) (SfGridSplitter) and explains about its structure. +This section explains how to create a [WPF GridSplitter](https://www.syncfusion.com/wpf-controls/gridsplitter) (WPF GridSplitter) and explains about its structure. -## Structure of SfGridSplitter +## Structure of WPF GridSplitter -![WPF SfGridSplitter Control](Getting-Started-images/Grid-Splitter.png) +![WPF GridSplitter Control](Getting-Started-images/Grid-Splitter.png) ## Visual representation -![Getting started with SfGridSplitter](Positioning-GridSplitter-images/Getting_started1.gif) +![Getting started with WPF GridSplitter](Positioning-GridSplitter-images/Getting_started1.gif) ## Assembly deployment @@ -35,7 +35,7 @@ To add the control manually in XAML, follow the given steps: * Syncfusion.SfInput.WPF * Syncfusion.SfShared.WPF 2. Import Syncfusion® WPF schema **http://schemas.syncfusion.com/wpf** in the XAML page. -3. Declare the `SfGridSplitter` control in the XAML page. +3. Declare the `WPF GridSplitter` control in the XAML page. {% capture codesnippet1 %} {% tabs %} @@ -65,8 +65,8 @@ To add the control manually in C#, follow the given steps: 1. Add the following required assembly references to the project: * Syncfusion.SfInput.WPF * Syncfusion.SfShared.WPF -2. Import the `SfGridSplitter` namespace **using Syncfusion.Windows.Controls.Input;**. -3. Create an `SfGridSplitter` instance, and add it to the window. +2. Import the `WPF GridSplitter` namespace **using Syncfusion.Windows.Controls.Input;**. +3. Create an `WPF GridSplitter` instance, and add it to the window. {% capture codesnippet2 %} {% tabs %} @@ -93,13 +93,13 @@ namespace SfGridSplitterSample { {% endcapture %} {{ codesnippet2 | OrderList_Indent_Level_1 }} -![SfGridSplitter control added by code](Getting-Started-images/WPF-Grid-Splitter.png) +![WPF GridSplitter control added by code](Getting-Started-images/WPF-Grid-Splitter.png) N> [View Sample in GitHub](https://github.com/SyncfusionExamples/syncfusion-gridsplitter-control-examples/tree/master/Samples/GridSplitter) ## Resize the grid rows -If we want to resize the specific grid rows, place the `SfGridSplitter` on next or previous row and set the `HorizontalAlignment` property as `Stretch` and `ResizeBehavior` property value as `PreviousAndNext`. +If we want to resize the specific grid rows, place the `WPF GridSplitter` on next or previous row and set the `HorizontalAlignment` property as `Stretch` and `ResizeBehavior` property value as `PreviousAndNext`. {% tabs %} {% highlight XAML %} @@ -140,13 +140,13 @@ If we want to resize the specific grid rows, place the `SfGridSplitter` on next {% endhighlight %} {% endtabs %} -![Resize the grid rows using SfGridSplitter](Positioning-GridSplitter-images/Horizontal_Splitter_img.png) +![Resize the grid rows using WPF GridSplitter](Positioning-GridSplitter-images/Horizontal_Splitter_img.png) N> [View Sample in GitHub](https://github.com/SyncfusionExamples/syncfusion-gridsplitter-control-examples/tree/master/Samples/GridSplitter) ## Resize the grid columns -If we want to resize the specific grid columns, place the `SfGridSplitter` on next or previous column and set the `VerticalAlignment` property as `Stretch` and `ResizeBehavior` property value as `PreviousAndNext`. +If we want to resize the specific grid columns, place the `WPF GridSplitter` on next or previous column and set the `VerticalAlignment` property as `Stretch` and `ResizeBehavior` property value as `PreviousAndNext`. {% tabs %} {% highlight XAML %} @@ -187,11 +187,11 @@ If we want to resize the specific grid columns, place the `SfGridSplitter` on ne {% endhighlight %} {% endtabs %} -![Resize the grid columns using SfGridSplitter](Positioning-GridSplitter-images/Vertical_Splitter_img.png) +![Resize the grid columns using WPF GridSplitter](Positioning-GridSplitter-images/Vertical_Splitter_img.png) N> [View Sample in GitHub](https://github.com/SyncfusionExamples/syncfusion-gridsplitter-control-examples/tree/master/Samples/GridSplitter) -N> We can restrict the moving location of the grid splitter (Left or Right or Bottom or Top) by setting the value for `ResizeBehavior` property. The `ResizeBehavior` value must be assigned based on the row or column where the grid splitter placed. +N> We can restrict the moving location of the WPF GridSplitter (Left or Right or Bottom or Top) by setting the value for `ResizeBehavior` property. The `ResizeBehavior` value must be assigned based on the row or column where the grid splitter placed. ## Resizing the grid rows and columns with specific pixel @@ -434,7 +434,7 @@ N> You can see the effect of collapse button templates only on when `EnableColla {% endhighlight %} {% endtabs %} -![SfGridSplitter with expand or collapse button template](Positioning-GridSplitter-images/Collapsebuttontemplate.png) +![WPF GridSplitter with expand or collapse button template](Positioning-GridSplitter-images/Collapsebuttontemplate.png) N> [View Sample in GitHub](https://github.com/SyncfusionExamples/syncfusion-gridsplitter-control-examples/tree/master/Samples/Appearance) @@ -535,13 +535,13 @@ If you you want to change the UI of vertical and horizontal splitter gripper sep {% endhighlight %} {% endtabs %} -![SfGridSplitter with custom gripper](Positioning-GridSplitter-images/Gripper.png) +![WPF GridSplitter with custom gripper](Positioning-GridSplitter-images/Gripper.png) N> [View Sample in GitHub](https://github.com/SyncfusionExamples/syncfusion-gridsplitter-control-examples/tree/master/Samples/Custom-Gripper) ## Deferred resizing -We can directly redistribute the row or columns by using `SfGridSplitter`. If we want to preview the location of redistributing row or columns before it changed, we can use the [ShowsPreview](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Input.SfGridSplitter.html) property as `true`. +We can directly redistribute the row or columns by using `WPF GridSplitter`. If we want to preview the location of redistributing row or columns before it changed, we can use the [ShowsPreview](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Input.SfGridSplitter.html) property as `true`. {% tabs %} {% highlight XAML %} @@ -581,13 +581,13 @@ We can directly redistribute the row or columns by using `SfGridSplitter`. If we {% endhighlight %} {% endtabs %} -![SfGridSplitter with deferred resizing](Positioning-GridSplitter-images/ShowsPreview.png) +![WPF GridSplitter with deferred resizing](Positioning-GridSplitter-images/ShowsPreview.png) N> [View Sample in GitHub](https://github.com/SyncfusionExamples/syncfusion-gridsplitter-control-examples/tree/master/Samples/GridSplitter) -## Grid splitter for the merged columns or rows +## WPF GridSplitter for the merged columns or rows -If we want resize the merged columns or rows, place the grid splitter on next or previous row or column of the grid. +If we want resize the merged columns or rows, place the WPF GridSplitter on next or previous row or column of the grid. {% tabs %} {% highlight XAML %} @@ -643,16 +643,16 @@ If we want resize the merged columns or rows, place the grid splitter on next or {% endhighlight %} {% endtabs %} -![Grid splitter for the merged columns or rows](Positioning-GridSplitter-images/Columspan_img.png) +![WPF GridSplitter for the merged columns or rows](Positioning-GridSplitter-images/Columspan_img.png) N> [View Sample in GitHub](https://github.com/SyncfusionExamples/syncfusion-gridsplitter-control-examples/tree/master/Samples/GridSplitter) ## Theme -SfGridSplitter supports various built-in themes. Refer to the below links to apply themes for the SfGridSplitter, +The WPF GridSplitter supports various built-in themes. Refer to the below links to apply themes for the WPF GridSplitter, * [Apply theme using SfSkinManager](https://help.syncfusion.com/wpf/themes/skin-manager) * [Create a custom theme using ThemeStudio](https://help.syncfusion.com/wpf/themes/theme-studio#creating-custom-theme) - ![Setting theme to WPF SfGridSplitter](Getting-Started-images/WPF-Grid-Splitter-theme-support.png) \ No newline at end of file + ![Setting theme to WPF GridSplitter](Getting-Started-images/WPF-Grid-Splitter-theme-support.png) \ No newline at end of file diff --git a/wpf/GridSplitter/Overview.md b/wpf/GridSplitter/Overview.md index 9ecd6d3ff..48efa5c4e 100644 --- a/wpf/GridSplitter/Overview.md +++ b/wpf/GridSplitter/Overview.md @@ -9,11 +9,11 @@ documentation: ug # About Syncfusion® WPF GridSplitter (SfGridSplitter) Control -[SfGridSplitter](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Input.SfGridSplitter.html) is a container control that helps to split the available space horizontally or vertically with a movable splitter and arrange the visual elements inside it. +[WPF GridSplitter](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Input.SfGridSplitter.html) is a container control that helps to split the available space horizontally or vertically with a movable splitter and arrange the visual elements inside it. ![WPF GridSplitter resize and collapse](Overview-images/overview.png) -## Features of SfGridSplitter +## Features of WPF GridSplitter * Dynamic resizing: Splits available space with movable splitter that helps resize controls on demand. * Expand / Collapse: Supports to expand and collapse splitter controls interactively in UI. From 51f204d295d26bf98478655a0d21b78b33195125 Mon Sep 17 00:00:00 2001 From: Madhavansf Date: Thu, 3 Sep 2026 11:23:01 +0530 Subject: [PATCH 2/5] Button and GridSplitter control changes updated. --- wpf/Button/Events.md | 6 ++-- wpf/Button/Getting-Started.md | 42 ++++++++++++++-------------- wpf/Button/MVVM.md | 8 +++--- wpf/Button/Multiline-Text-Support.md | 4 +-- wpf/Button/Overview.md | 10 +++---- wpf/Button/Styles-and-Templates.md | 22 +++++++-------- wpf/Button/Themes.md | 2 +- wpf/Button/Toggle-State.md | 4 +-- wpf/GridSplitter/Appearance.md | 8 +++--- wpf/GridSplitter/Getting-Started.md | 36 ++++++++++++------------ wpf/GridSplitter/Overview.md | 2 +- 11 files changed, 72 insertions(+), 72 deletions(-) diff --git a/wpf/Button/Events.md b/wpf/Button/Events.md index 35f4128fc..a608646b9 100644 --- a/wpf/Button/Events.md +++ b/wpf/Button/Events.md @@ -9,11 +9,11 @@ documentation: ug # Events in WPF Button (ButtonAdv) -The WPF Button comprises of the pre-defined events that are illustrated below. +The [WPF Button](https://www.syncfusion.com/wpf-controls/button) control includes the predefined events described below. The WPF Button is implemented through the `ButtonAdv` class. ## Click -The events occurs when the WPF Button control is clicked and any action can be handled in the respective event handler. +The `Click` event occurs when the WPF Button control is clicked. You can handle any action in the respective event handler. {% tabs %} {% highlight xaml %} @@ -36,7 +36,7 @@ private void button_Click(object sender, RoutedEventArgs e) ## Checked -The event occurs when the WPF Button control is utilized as ToggleButton, that is, when [IsCheckable](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_IsCheckable) property value is set to **true**. Any action can be handled in the respective event handler. +The `Checked` event occurs when the WPF Button control is used as a ToggleButton, that is, when the [IsCheckable](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_IsCheckable) property is set to **true**. You can handle any action in the respective event handler. {% tabs %} {% highlight xaml %} diff --git a/wpf/Button/Getting-Started.md b/wpf/Button/Getting-Started.md index a14a094b1..c2c75505d 100644 --- a/wpf/Button/Getting-Started.md +++ b/wpf/Button/Getting-Started.md @@ -9,7 +9,7 @@ documentation: ug # Getting Started with WPF Button (ButtonAdv) -This section provides an overview of how to work with [WPF Button](https://www.syncfusion.com/wpf-controls/button) control. It describes the control structure, the control initialization and the image setting to the control. +This section provides an overview of how to work with the [WPF Button](https://www.syncfusion.com/wpf-controls/button) control. It describes the control structure, initialization, and image settings. The WPF Button is implemented through the `ButtonAdv` class. ## Control structure @@ -17,11 +17,11 @@ This section provides an overview of how to work with [WPF Button](https://www.s ## Assembly deployment -Refer [WPF Button](https://help.syncfusion.com/wpf/control-dependencies#buttonadv) control dependencies section to get the list of assemblies or [NuGet package](https://help.syncfusion.com/wpf/installation/install-nuget-packages) needs to be added as reference to use the ButtonAdv control in any application. +Refer to the [WPF Button](https://help.syncfusion.com/wpf/control-dependencies#buttonadv) control dependencies section for the list of assemblies or the [NuGet package](https://help.syncfusion.com/wpf/installation/install-nuget-packages) that needs to be added as a reference to use the ButtonAdv control in an application. ## Creating simple application with WPF Button -In this walk through, will create WPF application that contains WPF Button control. By the following ways, one can add the controls: +In this walkthrough, you will create a WPF application that contains the WPF Button control. You can add the control in the following ways: 1. [Adding control via designer](#adding-control-via-designer) @@ -31,7 +31,7 @@ In this walk through, will create WPF application that contains WPF Button contr ### Adding control via designer -WPF Button control can be added to the application by dragging **ButtonAdv** from toolbox and dropping it in designer view. After dropping the control in designer view, the assembly **Syncfusion.Shared.WPF** gets added into the project automatically. The following code snippets will also be added into the XAML. +You can add the WPF Button control to the application by dragging **ButtonAdv** from the toolbox and dropping it in the designer view. After you drop the control in the designer view, the **Syncfusion.Shared.WPF** assembly is added to the project automatically. The following code snippets are also added to the XAML. {% tabs %} {% highlight xaml %} @@ -47,9 +47,9 @@ N> **syncfusion** in XAML is an auto generated namespace. ### Adding control manually in XAML -In order to add the control manually in XAML, follow the below steps. +To add the control manually in XAML, follow these steps. -1. Add the below required assembly reference to the project. +1. Add the following required assembly reference to the project. * Syncfusion.Shared.WPF @@ -80,9 +80,9 @@ In order to add the control manually in XAML, follow the below steps. ### Adding control manually in C# -In order to the add control manually in C#, do the below steps. +To add the control manually in C#, follow these steps. -1. Add the below required assembly reference to the project. +1. Add the following required assembly reference to the project. * Syncfusion.Shared.WPF @@ -133,7 +133,7 @@ using Syncfusion.Windows.Tools.Controls; ## Setting label -The label on the WPF Button is a text that explains its action to the end-user. Apply the text by using the [Label](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_Label) property. +The label on the WPF Button is text that explains its action to the end user. Set the text by using the [Label](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_Label) property. {% tabs %} {% highlight xaml %} @@ -155,7 +155,7 @@ button.SmallIcon = new BitmapImage(new Uri("image/usersmall.png" , UriKind.Relat ## Setting size mode -Size mode is used to render WPF Button control in different pre-defined sizes based on application demand. Apply the size mode by setting the [SizeMode](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_SizeMode) property. +Size mode renders the WPF Button control in different predefined sizes based on application requirements. Set the size mode by using the [SizeMode](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_SizeMode) property. The **SizeMode** is an enumeration which contains the following values: @@ -187,7 +187,7 @@ button.SmallIcon = new BitmapImage(new Uri("image/usersmall.png", UriKind.Relati ### Normal mode -In a normal size WPF Button, a small image with the text on the side will be displayed. +In a normal-size WPF Button, a small image is displayed beside the text. {% tabs %} {% highlight xaml %} @@ -209,7 +209,7 @@ button.SmallIcon = new BitmapImage(new Uri("image/usersmall.png", UriKind.Relati ### Large mode -In a large size WPF Button, a large image along with the text at the bottom will be displayed. +In a large-size WPF Button, a large image is displayed above the text. {% tabs %} {% highlight xaml %} @@ -231,7 +231,7 @@ button.LargeIcon = new BitmapImage(new Uri("image/userlarge.png", UriKind.Relati ## Setting icon template -The [IconTemplate](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_IconTemplate) property provides support for setting up any type of image such as path data, font icons, etc. to the ButtonAdv. The icon will automatically resize the template content according to its size provided in the data template. +The [IconTemplate](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_IconTemplate) property supports image content such as path data and font icons in the ButtonAdv control. The icon automatically resizes the template content according to the size provided in the data template. {% tabs %} @@ -299,7 +299,7 @@ The [IconTemplate](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.C ## Setting icon template selector - The [IconTemplateSelector](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_IconTemplateSelector) property that allows you to specify a different data template based on the value given in the data templates. +The [IconTemplateSelector](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_IconTemplateSelector) property allows you to specify a different data template based on the value given in the data templates. {% tabs %} @@ -412,12 +412,12 @@ The [IconTemplate](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.C ## Setting image -The image option helps to provide pictorial representation of the WPF Button. Image can be added either using the [SmallIcon](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_SmallIcon) property or [LargeIcon](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_LargeIcon) property. +The image option provides a pictorial representation of the WPF Button. You can add an image by using either the [SmallIcon](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_SmallIcon) property or the [LargeIcon](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_LargeIcon) property. **SmallIcon** — This property will be used to set the image when size mode is **Normal** or **Small**. **LargeIcon** — This property will be used to set the image when size mode is **Large**. -The **SmallIcon** property can be set as follows: +You can set the **SmallIcon** property as follows: {% tabs %} {% highlight xaml %} @@ -456,7 +456,7 @@ button.SmallIcon = new BitmapImage(new Uri("image/syncfusion.png", UriKind.Relat ![Normal-Image](Getting-Started_images/Getting-Started_img7.png) -The **LargeIcon** property can be set as follows: +You can set the **LargeIcon** property as follows: {% tabs %} {% highlight xaml %} @@ -522,7 +522,7 @@ N> View [sample](https://github.com/SyncfusionExamples/wpf-button-examples/blob/ ## Setting corner radius -The `CornerRadius` property allows users to easily customize the appearance of buttons to have rounded corners. The default value of corner radius is 3. +The `CornerRadius` property allows users to customize the appearance of buttons with rounded corners. The default value of the `CornerRadius` property is `3`. {% tabs %} @@ -549,7 +549,7 @@ button.SmallIcon = new BitmapImage(new Uri("image/syncfusion.png", UriKind.Relat ## IsDefault mode -The [IsDefault](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_IsDefault) property indicates whether the WPF Button is a Default Button and is used to activate the Button by pressing using Enter key. When setting the IsDefault property to true, the user can invoke the Button by pressing the `Enter` key. +The [IsDefault](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_IsDefault) property indicates whether the WPF Button is a default button that can be activated by pressing the Enter key. When you set the `IsDefault` property to `true`, the user can invoke the Button by pressing the `Enter` key. {% tabs %} @@ -563,7 +563,7 @@ The [IsDefault](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Cont ## IsCancel mode -The [IsCancel](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_IsCancel) property indicates whether the WPF Button is a Cancel Button and is used to activate the Button by using Escape key. When setting the IsCancel property to true, the user can invoke the Button by pressing the `Escape` key. +The [IsCancel](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_IsCancel) property indicates whether the WPF Button is a cancel button that can be activated by pressing the Escape key. When you set the `IsCancel` property to `true`, the user can invoke the Button by pressing the `Escape` key. {% tabs %} @@ -577,7 +577,7 @@ The [IsCancel](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Contr ## Theme -WPF Button supports various built-in themes. Refer to the below links to apply themes for the Button, +The WPF Button supports various built-in themes. Refer to the following links to apply themes to the Button: * [Apply theme using SfSkinManager](https://help.syncfusion.com/wpf/themes/skin-manager) diff --git a/wpf/Button/MVVM.md b/wpf/Button/MVVM.md index 06ab01502..0e909fc9c 100644 --- a/wpf/Button/MVVM.md +++ b/wpf/Button/MVVM.md @@ -9,10 +9,10 @@ documentation: ug # MVVM in WPF Button (ButtonAdv) -The command and command parameter properties allow to execute any action on clicking the WPF Button control. +The [WPF Button](https://www.syncfusion.com/wpf-controls/button) control supports command and command parameter properties that allow you to execute an action when it is clicked. The WPF Button is implemented through the `ButtonAdv` class. -* **Command** - The [Command](https://learn.microsoft.com/en-us/dotnet/api/system.windows.input.icommandsource.command?view=netframework-4.8) property accept all commands derived from interface [ICommand](https://learn.microsoft.com/en-us/dotnet/api/system.windows.input.icommand?view=netframework-4.8). -* **CommandParameter** - The [CommandParameter](https://learn.microsoft.com/en-us/dotnet/api/system.windows.input.icommandsource.commandparameter?view=netframework-4.8) property allows the user to provide additional data required in the command handler in-order to perform any operation. +* **Command** - The [Command](https://learn.microsoft.com/en-us/dotnet/api/system.windows.input.icommandsource.command?view=netframework-4.8) property accepts all commands derived from the [ICommand](https://learn.microsoft.com/en-us/dotnet/api/system.windows.input.icommand?view=netframework-4.8) interface. +* **CommandParameter** - The [CommandParameter](https://learn.microsoft.com/en-us/dotnet/api/system.windows.input.icommandsource.commandparameter?view=netframework-4.8) property allows the user to provide additional data required by the command handler to perform an operation. {% tabs %} {% highlight xaml %} @@ -168,4 +168,4 @@ public class ButtonViewModel : NotificationObject {% endhighlight %} {% endtabs %} -N> View [sample](https://github.com/SyncfusionExamples/wpf-button-examples/blob/master/Samples/MVVM) in GitHub. This sample showcases how to bind commands to the `WPF Button` control. +N> View [sample](https://github.com/SyncfusionExamples/wpf-button-examples/blob/master/Samples/MVVM) in GitHub. This sample showcases how to bind commands to the WPF Button control. diff --git a/wpf/Button/Multiline-Text-Support.md b/wpf/Button/Multiline-Text-Support.md index 97cee7a18..bdc5e0fb8 100644 --- a/wpf/Button/Multiline-Text-Support.md +++ b/wpf/Button/Multiline-Text-Support.md @@ -9,9 +9,9 @@ documentation: ug # Multiline Text in WPF Button (ButtonAdv) -Multiline support is used to render text content of the WPF Button control in multiple lines for precise view. One can apply the multiline text by using the [IsMultiLine](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_IsMultiLine) property. +The [WPF Button](https://www.syncfusion.com/wpf-controls/button) control supports rendering text across multiple lines. The WPF Button is implemented through the `ButtonAdv` class. You can enable multiline text by using the [IsMultiLine](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_IsMultiLine) property. -N> This property is only applicable for large size mode WPF Button. +N> This property is applicable only when the WPF Button is in large size mode. {% tabs %} {% highlight XAML %} diff --git a/wpf/Button/Overview.md b/wpf/Button/Overview.md index 1cd4edb1b..fdcfba32d 100644 --- a/wpf/Button/Overview.md +++ b/wpf/Button/Overview.md @@ -9,19 +9,19 @@ documentation: ug # About Syncfusion® WPF Button (ButtonAdv) Control -The WPF Button (or ButtonAdv) is a basic Button control with image options and multi-line support which is used to design complex forms and applications. The control is shipped with a commanding support that provides compatibility in MVVM design pattern by attaching commands to the control, which will get executed when it gets clicked. +The [WPF Button](https://www.syncfusion.com/wpf-controls/button) control (or ButtonAdv) is a basic button control with image options and multiline support for designing complex forms and applications. The control provides command support for the MVVM design pattern by allowing commands to be attached to the control and executed when it is clicked. The WPF Button is implemented through the `ButtonAdv` class. ## Key features -* **Size Mode** - Predefined sizes, such as small, normal and large, can be set to the WPF Button. +* **Size Mode** - Predefined sizes, such as small, normal, and large, can be set for the WPF Button. -* **Image** - Provides options for loading image in WPF Button. +* **Image** - Provides options for loading an image in the WPF Button. * **Command Binding** - Provides support to execute any action on clicking the instance. -* **Multiline** - Provides support for displaying multiple lines of text in large WPF Button. +* **Multiline** - Provides support for displaying multiple lines of text in a large WPF Button. -* **Checkable** - Provides support for clicking the WPF Button that looks like the ToggleButton. +* **Checkable** - Provides support for using the WPF Button as a ToggleButton. * **Localization** - Provides support to customize the text in the user interface based on the local culture. diff --git a/wpf/Button/Styles-and-Templates.md b/wpf/Button/Styles-and-Templates.md index 345c9eded..6ea672f81 100644 --- a/wpf/Button/Styles-and-Templates.md +++ b/wpf/Button/Styles-and-Templates.md @@ -9,9 +9,9 @@ documentation: ug # Styles and Templates in WPF Button (ButtonAdv) -WPF styles and templates is a suite of features that allow developers and designers to create visual compelling effects and consistent appearance of the products. +The [WPF Button](https://www.syncfusion.com/wpf-controls/button) control supports styles and templates that allow developers and designers to create visually compelling effects and a consistent product appearance. The WPF Button is implemented through the `ButtonAdv` class. -This document provides information to change the visual appearance of the Button control. In addition, one can edit the structure of the Button control by using Blend and Visual Studio that helps to customize their appearances. +This document provides information about changing the visual appearance of the Button control. You can also edit the structure of the Button control by using Blend and Visual Studio to customize its appearance. ## Edit appearance in Expression Blend @@ -20,18 +20,18 @@ This document provides information to change the visual appearance of the Button ![Blendability](Blendability_images/Blendability_img1.png) -* Right click on the WPF Button control and choose the menu option **Edit Template**. It will comprise of following two options. +* Right-click the WPF Button control and choose **Edit Template**. It contains the following two options. * **Edit a Copy...** – Edit a copy of the default style. When selecting this option, a new dialog opens as follows. ![Blendability](Blendability_images/Blendability_img2.png) ![Blendability](Blendability_images/Blendability_img3.png) - The **Create Style Resource** dialog allows to enter the name or change the style name, as well as choose the location for the style. When **OK** is pressed, the Button control style is generated by the Expression Blend in the **Resource** section. The generated XAML can be edited in XAML view or in Visual Studio. + The **Create Style Resource** dialog allows you to enter or change the style name and choose the location for the style. When you select **OK**, Expression Blend generates the Button control style in the **Resource** section. You can edit the generated XAML in XAML view or Visual Studio. - * **Create Empty...** - Creates an empty WPF Button style. Selecting this option will open the **Create ControlTemplate Resource** dialog which allows the user to enter the name or change the control template name, as well as choose the location for the template. + * **Create Empty...** - Creates an empty WPF Button style. Selecting this option opens the **Create ControlTemplate Resource** dialog, which allows you to enter or change the control template name and choose the location for the template. -All resources will be displayed on the XAML file of the application after performing above steps. These resources can be edited to create a new Style. +All resources are displayed in the application XAML file after you perform the above steps. You can edit these resources to create a new style. ![Blendability](Blendability_images/Blendability_img5.png) @@ -43,22 +43,22 @@ WPF Button control edited in Expression Blend ## Edit appearance in Visual Studio * Open the application in Visual Studio. -* Open design view and select the WPF Button control. Now right Click on the Button control and you can see some menu options showing up. +* Open design view and select the WPF Button control. Right-click the Button control to view the available menu options. ![Blendability](Blendability_images/Blendability_img6.png) -* On choosing menu option **Edit Template**, it further comprise of following two options. +* Select **Edit Template** to view the following two options. * **Edit a Copy...** – Edit a copy of the default style. When selecting this option, a new dialog opens as follows. ![Blendability](Blendability_images/Blendability_img7.png) ![Blendability](Blendability_images/Blendability_img8.png) - The **Create ControlTemplate Resource** dialog allows to enter the name or change the control template name, as well as choose the location for the template. When **OK** is pressed, the WPF Button control template is generated in the **Resource** section. The generated XAML can be edited in XAML view. + The **Create ControlTemplate Resource** dialog allows you to enter or change the control template name and choose the location for the template. When you select **OK**, Visual Studio generates the WPF Button control template in the **Resource** section. You can edit the generated XAML in XAML view. - * **Create Empty...** - Creates an empty WPF Button style. Selecting this option will open the **Create ControlTemplate Resource** dialog which allows the user to enter the name or change the control template name, as well as choose the location for the template. + * **Create Empty...** - Creates an empty WPF Button style. Selecting this option opens the **Create ControlTemplate Resource** dialog, which allows you to enter or change the control template name and choose the location for the template. -All resources will be displayed on the XAML file of the application after performing above steps. These resources can be edited to create a new Style. +All resources are displayed in the application XAML file after you perform the above steps. You can edit these resources to create a new style. ![Blendability](Blendability_images/Blendability_img9.png) diff --git a/wpf/Button/Themes.md b/wpf/Button/Themes.md index 3f29b0604..60e40b0a0 100644 --- a/wpf/Button/Themes.md +++ b/wpf/Button/Themes.md @@ -9,7 +9,7 @@ documentation: ug # Themes in WPF Button (ButtonAdv) -The WPF Button supports various built-in themes. Refer to the below links to apply themes for the WPF Button, +The [WPF Button](https://www.syncfusion.com/wpf-controls/button) control supports various built-in themes. The WPF Button is implemented through the `ButtonAdv` class. Refer to the following links to apply themes to the WPF Button: * [Apply theme using SfSkinManager](https://help.syncfusion.com/wpf/themes/skin-manager) diff --git a/wpf/Button/Toggle-State.md b/wpf/Button/Toggle-State.md index da108c96e..4b4d89f6d 100644 --- a/wpf/Button/Toggle-State.md +++ b/wpf/Button/Toggle-State.md @@ -9,9 +9,9 @@ documentation: ug # Toggle State in WPF Button (ButtonAdv) -The WPF Button control can also be used as a ToggleButton, similar to the on/off view when the [IsCheckable](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_IsCheckable) property is set to **true**. The default value of this property is **false**. +The [WPF Button](https://www.syncfusion.com/wpf-controls/button) control can also be used as a ToggleButton, similar to an on/off switch, when the [IsCheckable](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_IsCheckable) property is set to **true**. The WPF Button is implemented through the `ButtonAdv` class. The default value of this property is **false**. -N> In addition to [IsCheckable](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_IsCheckable) property, the [IsChecked](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_IsChecked) property helps to check the WPF Button by default. In other words, during initial rendering, the WPF Button will appear in **on** state using the later property. +N> In addition to the [IsCheckable](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_IsCheckable) property, the [IsChecked](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_IsChecked) property lets you check the WPF Button by default. During initial rendering, the WPF Button appears in the **on** state when you use the latter property. {% tabs %} {% highlight xaml %} diff --git a/wpf/GridSplitter/Appearance.md b/wpf/GridSplitter/Appearance.md index 9c9a69628..8005b1646 100644 --- a/wpf/GridSplitter/Appearance.md +++ b/wpf/GridSplitter/Appearance.md @@ -9,11 +9,11 @@ documentation: ug # Appearance in WPF GridSplitter (SfGridSplitter) -This section explains different UI customization and styling support available in [WPF GridSplitter](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Input.SfGridSplitter.html) control. +This section explains the UI customization and styling options available in the [WPF GridSplitter](https://www.syncfusion.com/wpf-controls/gridsplitter) control. The WPF GridSplitter is implemented through the `SfGridSplitter` class. For API reference, see the [WPF GridSplitter](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Input.SfGridSplitter.html) class. ## Setting the Background -We can change the background color of `WPF GridSplitter` by setting the `Background` property. The default color value of `Background` property is `Light Gray`. +You can change the background color of the `SfGridSplitter` by setting the `Background` property. The default value of the `Background` property is `Light Gray`. {% tabs %} {% highlight XAML %} @@ -59,7 +59,7 @@ N> [View Sample in GitHub](https://github.com/SyncfusionExamples/syncfusion-grid ### Custom drag preview -We can change the custom UI of the preview WPF GridSplitter by using the [SfGridSplitter.PreviewStyle](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Input.SfGridSplitter.html) property. We can see the effect of `PreviewStyle` only on when `ShowsPreview` property value is `true`. +You can customize the preview UI of the WPF GridSplitter by using the [SfGridSplitter.PreviewStyle](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Input.SfGridSplitter.html) property. The `PreviewStyle` property takes effect only when the `ShowsPreview` property is set to `true`. {% tabs %} {% highlight XAML %} @@ -119,7 +119,7 @@ N> [View Sample in GitHub](https://github.com/SyncfusionExamples/syncfusion-grid ## Theme -The WPF GridSplitter supports various built-in themes. Refer to the below links to apply themes for the WPF GridSplitter, +The WPF GridSplitter supports various built-in themes. Refer to the following links to apply themes to the WPF GridSplitter: * [Apply theme using SfSkinManager](https://help.syncfusion.com/wpf/themes/skin-manager) diff --git a/wpf/GridSplitter/Getting-Started.md b/wpf/GridSplitter/Getting-Started.md index ed44d0502..9523d4460 100644 --- a/wpf/GridSplitter/Getting-Started.md +++ b/wpf/GridSplitter/Getting-Started.md @@ -9,7 +9,7 @@ documentation: ug # Getting Started with WPF GridSplitter (SfGridSplitter) -This section explains how to create a [WPF GridSplitter](https://www.syncfusion.com/wpf-controls/gridsplitter) (WPF GridSplitter) and explains about its structure. +This section explains how to create a [WPF GridSplitter](https://www.syncfusion.com/wpf-controls/gridsplitter) and describes its structure. The WPF GridSplitter is implemented through the `SfGridSplitter` class. ## Structure of WPF GridSplitter @@ -21,9 +21,9 @@ This section explains how to create a [WPF GridSplitter](https://www.syncfusion. ## Assembly deployment -Refer to the [control dependencies](https://help.syncfusion.com/wpf/control-dependencies#sfgridsplitter) section to get the list of assemblies or NuGet package that needs to be added as a reference to use the control in any application. +Refer to the [control dependencies](https://help.syncfusion.com/wpf/control-dependencies#sfgridsplitter) section for the list of assemblies or NuGet package that needs to be added as a reference to use the control in an application. -You can find more details about installing the NuGet package in a WPF application in the following link: +You can find more details about installing the NuGet package in a WPF application in the following link: [How to install nuget packages](https://help.syncfusion.com/wpf/installation/install-nuget-packages) @@ -35,7 +35,7 @@ To add the control manually in XAML, follow the given steps: * Syncfusion.SfInput.WPF * Syncfusion.SfShared.WPF 2. Import Syncfusion® WPF schema **http://schemas.syncfusion.com/wpf** in the XAML page. -3. Declare the `WPF GridSplitter` control in the XAML page. +3. Declare the `SfGridSplitter` control in the XAML page. {% capture codesnippet1 %} {% tabs %} @@ -65,8 +65,8 @@ To add the control manually in C#, follow the given steps: 1. Add the following required assembly references to the project: * Syncfusion.SfInput.WPF * Syncfusion.SfShared.WPF -2. Import the `WPF GridSplitter` namespace **using Syncfusion.Windows.Controls.Input;**. -3. Create an `WPF GridSplitter` instance, and add it to the window. +2. Import the namespace **using Syncfusion.Windows.Controls.Input;**. +3. Create an `SfGridSplitter` instance and add it to the window. {% capture codesnippet2 %} {% tabs %} @@ -99,7 +99,7 @@ N> [View Sample in GitHub](https://github.com/SyncfusionExamples/syncfusion-grid ## Resize the grid rows -If we want to resize the specific grid rows, place the `WPF GridSplitter` on next or previous row and set the `HorizontalAlignment` property as `Stretch` and `ResizeBehavior` property value as `PreviousAndNext`. +To resize specific grid rows, place the `SfGridSplitter` on the next or previous row and set the `HorizontalAlignment` property to `Stretch` and the `ResizeBehavior` property to `PreviousAndNext`. {% tabs %} {% highlight XAML %} @@ -146,7 +146,7 @@ N> [View Sample in GitHub](https://github.com/SyncfusionExamples/syncfusion-grid ## Resize the grid columns -If we want to resize the specific grid columns, place the `WPF GridSplitter` on next or previous column and set the `VerticalAlignment` property as `Stretch` and `ResizeBehavior` property value as `PreviousAndNext`. +To resize specific grid columns, place the `SfGridSplitter` on the next or previous column and set the `VerticalAlignment` property to `Stretch` and the `ResizeBehavior` property to `PreviousAndNext`. {% tabs %} {% highlight XAML %} @@ -191,11 +191,11 @@ If we want to resize the specific grid columns, place the `WPF GridSplitter` on N> [View Sample in GitHub](https://github.com/SyncfusionExamples/syncfusion-gridsplitter-control-examples/tree/master/Samples/GridSplitter) -N> We can restrict the moving location of the WPF GridSplitter (Left or Right or Bottom or Top) by setting the value for `ResizeBehavior` property. The `ResizeBehavior` value must be assigned based on the row or column where the grid splitter placed. +N> You can restrict the movement of the WPF GridSplitter (left, right, bottom, or top) by setting the `ResizeBehavior` property. The `ResizeBehavior` value must be assigned based on the row or column where the grid splitter is placed. ## Resizing the grid rows and columns with specific pixel -If we want to resize the rows or columns of grid with particular pixel interval, Set the pixel value for `DragIncrement` and `KeyboardIncrement` properties. If we move the splitter using the mouse, `DragIncrement` property values is used as resize pixel interval. If we move the splitter using the Up-Down buttons, `KeyboardIncrement` property values is used as resize pixel interval. The default value of `DragIncrement` property is `1` and `KeyboardIncrement` property is `20`. +To resize grid rows or columns at a specific pixel interval, set the pixel values for the `DragIncrement` and `KeyboardIncrement` properties. When you move the splitter with the mouse, the `DragIncrement` property value is used as the resize interval. When you move the splitter using the up and down buttons, the `KeyboardIncrement` property value is used as the resize interval. The default value of the `DragIncrement` property is `1`, and the default value of the `KeyboardIncrement` property is `20`. {% tabs %} @@ -244,7 +244,7 @@ N> [View Sample in GitHub](https://github.com/SyncfusionExamples/syncfusion-grid ### Resize the grid rows or columns programmatically -We can move the splitter and resize the affected columns or rows programmatically with certain pixels by passing the pixel value in [MoveSplitter(Double)](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Input.SfGridSplitter.html#Syncfusion_Windows_Controls_Input_SfGridSplitter_MoveSplitter_System_Double_) method. +You can move the splitter and resize the affected columns or rows programmatically by passing the pixel value to the [MoveSplitter(Double)](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Input.SfGridSplitter.html#Syncfusion_Windows_Controls_Input_SfGridSplitter_MoveSplitter_System_Double_) method. {% tabs %} {% highlight XAML %} @@ -296,7 +296,7 @@ gridSplitter.MoveSplitter(50); ## Show or hide the grid row and columns -We can collapse or expands the element in either side of the splitter by clicking the collapse buttons. We can show or hide the collapse button by using the [EnableCollapseButton](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Input.SfGridSplitter.html#Syncfusion_Windows_Controls_Input_SfGridSplitter_EnableCollapseButton) property value as `true`. The default value of `EnableCollapseButton` is `false`. +You can expand or collapse the element on either side of the splitter by clicking the collapse buttons. You can show or hide the collapse button by setting the [EnableCollapseButton](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Input.SfGridSplitter.html#Syncfusion_Windows_Controls_Input_SfGridSplitter_EnableCollapseButton) property to `true`. The default value of the `EnableCollapseButton` property is `false`. {% tabs %} {% highlight XAML %} @@ -342,9 +342,9 @@ N> [View Sample in GitHub](https://github.com/SyncfusionExamples/syncfusion-grid ## Custom UI for Collapse buttons -If you you want to change the UI of horizontal splitter up and down collapse button separately, use the [UpButtonTemplate](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Input.SfGridSplitter.html#Syncfusion_Windows_Controls_Input_SfGridSplitter_UpButtonTemplate) and [DownButtonTemplate](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Input.SfGridSplitter.html#Syncfusion_Windows_Controls_Input_SfGridSplitter_DownButtonTemplate) properties. If you want to change the UI of vertical splitter left and right collapse button, use the [LeftButtonTemplate](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Input.SfGridSplitter.html#Syncfusion_Windows_Controls_Input_SfGridSplitter_LeftButtonTemplate) and [RightButtonTemplate](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Input.SfGridSplitter.html#Syncfusion_Windows_Controls_Input_SfGridSplitter_RightButtonTemplate) properties +If you want to change the UI of the horizontal splitter's up and down collapse buttons separately, use the [UpButtonTemplate](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Input.SfGridSplitter.html#Syncfusion_Windows_Controls_Input_SfGridSplitter_UpButtonTemplate) and [DownButtonTemplate](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Input.SfGridSplitter.html#Syncfusion_Windows_Controls_Input_SfGridSplitter_DownButtonTemplate) properties. If you want to change the UI of the vertical splitter's left and right collapse buttons, use the [LeftButtonTemplate](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Input.SfGridSplitter.html#Syncfusion_Windows_Controls_Input_SfGridSplitter_LeftButtonTemplate) and [RightButtonTemplate](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Input.SfGridSplitter.html#Syncfusion_Windows_Controls_Input_SfGridSplitter_RightButtonTemplate) properties. -N> You can see the effect of collapse button templates only on when `EnableCollapseButton` property value is `true`. +N> You can see the effect of collapse button templates only when the `EnableCollapseButton` property is set to `true`. {% tabs %} {% highlight XAML %} @@ -440,7 +440,7 @@ N> [View Sample in GitHub](https://github.com/SyncfusionExamples/syncfusion-grid ## Custom UI for expander gripper -If you you want to change the UI of vertical and horizontal splitter gripper separately, use the [VerticalGripperTemplate](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Input.SfGridSplitter.html#Syncfusion_Windows_Controls_Input_SfGridSplitter_VerticalGripperTemplate) and [HorizontalGripperTemplate](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Input.SfGridSplitter.html#Syncfusion_Windows_Controls_Input_SfGridSplitter_HorizontalGripperTemplate) properties. +If you want to change the UI of the vertical and horizontal splitter grippers separately, use the [VerticalGripperTemplate](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Input.SfGridSplitter.html#Syncfusion_Windows_Controls_Input_SfGridSplitter_VerticalGripperTemplate) and [HorizontalGripperTemplate](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Input.SfGridSplitter.html#Syncfusion_Windows_Controls_Input_SfGridSplitter_HorizontalGripperTemplate) properties. {% tabs %} {% highlight XAML %} @@ -541,7 +541,7 @@ N> [View Sample in GitHub](https://github.com/SyncfusionExamples/syncfusion-grid ## Deferred resizing -We can directly redistribute the row or columns by using `WPF GridSplitter`. If we want to preview the location of redistributing row or columns before it changed, we can use the [ShowsPreview](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Input.SfGridSplitter.html) property as `true`. +You can directly redistribute rows or columns by using `SfGridSplitter`. To preview the redistribution location before it changes, set the [ShowsPreview](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Input.SfGridSplitter.html) property to `true`. {% tabs %} {% highlight XAML %} @@ -587,7 +587,7 @@ N> [View Sample in GitHub](https://github.com/SyncfusionExamples/syncfusion-grid ## WPF GridSplitter for the merged columns or rows -If we want resize the merged columns or rows, place the WPF GridSplitter on next or previous row or column of the grid. +To resize merged columns or rows, place the WPF GridSplitter on the next or previous row or column of the grid. {% tabs %} {% highlight XAML %} @@ -649,7 +649,7 @@ N> [View Sample in GitHub](https://github.com/SyncfusionExamples/syncfusion-grid ## Theme -The WPF GridSplitter supports various built-in themes. Refer to the below links to apply themes for the WPF GridSplitter, +The WPF GridSplitter supports various built-in themes. Refer to the following links to apply themes to the WPF GridSplitter: * [Apply theme using SfSkinManager](https://help.syncfusion.com/wpf/themes/skin-manager) diff --git a/wpf/GridSplitter/Overview.md b/wpf/GridSplitter/Overview.md index 48efa5c4e..dead0b387 100644 --- a/wpf/GridSplitter/Overview.md +++ b/wpf/GridSplitter/Overview.md @@ -9,7 +9,7 @@ documentation: ug # About Syncfusion® WPF GridSplitter (SfGridSplitter) Control -[WPF GridSplitter](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Input.SfGridSplitter.html) is a container control that helps to split the available space horizontally or vertically with a movable splitter and arrange the visual elements inside it. +The [WPF GridSplitter](https://www.syncfusion.com/wpf-controls/gridsplitter) is a container control that helps split the available space horizontally or vertically with a movable splitter and arrange the visual elements inside it. The WPF GridSplitter is implemented through the `SfGridSplitter` class. For API reference, see the [WPF GridSplitter](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Input.SfGridSplitter.html) class. ![WPF GridSplitter resize and collapse](Overview-images/overview.png) From e2754aa149c8212920ddb8a4dbcbfec1a76e60d6 Mon Sep 17 00:00:00 2001 From: Madhavansf Date: Thu, 3 Sep 2026 11:45:03 +0530 Subject: [PATCH 3/5] CI issue resolved --- wpf/GridSplitter/Appearance.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wpf/GridSplitter/Appearance.md b/wpf/GridSplitter/Appearance.md index 8005b1646..31628a59d 100644 --- a/wpf/GridSplitter/Appearance.md +++ b/wpf/GridSplitter/Appearance.md @@ -1,4 +1,4 @@ ---- +--- layout: post title: Appearance in WPF GridSplitter | Syncfusion® description: Customize the appearance of WPF GridSplitter (SfGridSplitter) with background styling, preview customization, themes, and visual enhancements. From 30b3ee366d5e879dfdecb5633abb38c7bfc136e1 Mon Sep 17 00:00:00 2001 From: Madhavansf Date: Thu, 3 Sep 2026 12:05:21 +0530 Subject: [PATCH 4/5] review concerns addressed --- wpf/Button/Events.md | 2 +- wpf/Button/Getting-Started.md | 6 +++--- wpf/Button/MVVM.md | 2 +- wpf/Button/Multiline-Text-Support.md | 2 +- wpf/Button/Overview.md | 2 +- wpf/Button/Styles-and-Templates.md | 2 +- wpf/Button/Themes.md | 2 +- wpf/Button/Toggle-State.md | 2 +- wpf/GridSplitter/Appearance.md | 2 +- wpf/GridSplitter/Getting-Started.md | 2 +- wpf/GridSplitter/Overview.md | 2 +- 11 files changed, 13 insertions(+), 13 deletions(-) diff --git a/wpf/Button/Events.md b/wpf/Button/Events.md index a608646b9..7d8d3ff20 100644 --- a/wpf/Button/Events.md +++ b/wpf/Button/Events.md @@ -9,7 +9,7 @@ documentation: ug # Events in WPF Button (ButtonAdv) -The [WPF Button](https://www.syncfusion.com/wpf-controls/button) control includes the predefined events described below. The WPF Button is implemented through the `ButtonAdv` class. +The [WPF Button](https://www.syncfusion.com/wpf-controls/button) control includes the predefined events described below. The WPF Button is implemented through the [ButtonAdv](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html) class. ## Click diff --git a/wpf/Button/Getting-Started.md b/wpf/Button/Getting-Started.md index c2c75505d..f9ca2518b 100644 --- a/wpf/Button/Getting-Started.md +++ b/wpf/Button/Getting-Started.md @@ -9,7 +9,7 @@ documentation: ug # Getting Started with WPF Button (ButtonAdv) -This section provides an overview of how to work with the [WPF Button](https://www.syncfusion.com/wpf-controls/button) control. It describes the control structure, initialization, and image settings. The WPF Button is implemented through the `ButtonAdv` class. +This section provides an overview of how to work with the [WPF Button](https://www.syncfusion.com/wpf-controls/button) control. It describes the control structure, initialization, and image settings. The WPF Button is implemented through the [ButtonAdv](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html) class. ## Control structure @@ -292,7 +292,7 @@ The [IconTemplate](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.C ![Setting icon template](Getting-Started_images/Getting-Started_img12.png) - N> The [WPF Button](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html) loads the icon in the following priority order. + N> The [ButtonAdv](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html) loads the icon in the following priority order. * [IconTemplate](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_IconTemplate) * [LargeIcon](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_LargeIcon) * [SmallIcon](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_SmallIcon) @@ -404,7 +404,7 @@ The [IconTemplateSelector](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows ![IconTemplateSelector in WPF Button](Getting-Started_images/Getting-Started_IconTemplateSelector.gif) - N> The [WPF Button](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html) loads the icon in the following priority order. + N> The [ButtonAdv](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html) loads the icon in the following priority order. * [IconTemplateSelector](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_IconTemplateSelector) * [IconTemplate](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_IconTemplate) * [LargeIcon](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_LargeIcon) diff --git a/wpf/Button/MVVM.md b/wpf/Button/MVVM.md index 0e909fc9c..1ed7b7a94 100644 --- a/wpf/Button/MVVM.md +++ b/wpf/Button/MVVM.md @@ -9,7 +9,7 @@ documentation: ug # MVVM in WPF Button (ButtonAdv) -The [WPF Button](https://www.syncfusion.com/wpf-controls/button) control supports command and command parameter properties that allow you to execute an action when it is clicked. The WPF Button is implemented through the `ButtonAdv` class. +The [WPF Button](https://www.syncfusion.com/wpf-controls/button) control supports command and command parameter properties that allow you to execute an action when it is clicked. The WPF Button is implemented through the [ButtonAdv](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html) class. * **Command** - The [Command](https://learn.microsoft.com/en-us/dotnet/api/system.windows.input.icommandsource.command?view=netframework-4.8) property accepts all commands derived from the [ICommand](https://learn.microsoft.com/en-us/dotnet/api/system.windows.input.icommand?view=netframework-4.8) interface. * **CommandParameter** - The [CommandParameter](https://learn.microsoft.com/en-us/dotnet/api/system.windows.input.icommandsource.commandparameter?view=netframework-4.8) property allows the user to provide additional data required by the command handler to perform an operation. diff --git a/wpf/Button/Multiline-Text-Support.md b/wpf/Button/Multiline-Text-Support.md index bdc5e0fb8..d7de2613b 100644 --- a/wpf/Button/Multiline-Text-Support.md +++ b/wpf/Button/Multiline-Text-Support.md @@ -9,7 +9,7 @@ documentation: ug # Multiline Text in WPF Button (ButtonAdv) -The [WPF Button](https://www.syncfusion.com/wpf-controls/button) control supports rendering text across multiple lines. The WPF Button is implemented through the `ButtonAdv` class. You can enable multiline text by using the [IsMultiLine](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_IsMultiLine) property. +The [WPF Button](https://www.syncfusion.com/wpf-controls/button) control supports rendering text across multiple lines. The WPF Button is implemented through the [ButtonAdv](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html) class. You can enable multiline text by using the [IsMultiLine](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_IsMultiLine) property. N> This property is applicable only when the WPF Button is in large size mode. diff --git a/wpf/Button/Overview.md b/wpf/Button/Overview.md index fdcfba32d..394e112df 100644 --- a/wpf/Button/Overview.md +++ b/wpf/Button/Overview.md @@ -9,7 +9,7 @@ documentation: ug # About Syncfusion® WPF Button (ButtonAdv) Control -The [WPF Button](https://www.syncfusion.com/wpf-controls/button) control (or ButtonAdv) is a basic button control with image options and multiline support for designing complex forms and applications. The control provides command support for the MVVM design pattern by allowing commands to be attached to the control and executed when it is clicked. The WPF Button is implemented through the `ButtonAdv` class. +The [WPF Button](https://www.syncfusion.com/wpf-controls/button) control (or ButtonAdv) is a basic button control with image options and multiline support for designing complex forms and applications. The control provides command support for the MVVM design pattern by allowing commands to be attached to the control and executed when it is clicked. The WPF Button is implemented through the [ButtonAdv](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html) class. ## Key features diff --git a/wpf/Button/Styles-and-Templates.md b/wpf/Button/Styles-and-Templates.md index 6ea672f81..cbe565844 100644 --- a/wpf/Button/Styles-and-Templates.md +++ b/wpf/Button/Styles-and-Templates.md @@ -9,7 +9,7 @@ documentation: ug # Styles and Templates in WPF Button (ButtonAdv) -The [WPF Button](https://www.syncfusion.com/wpf-controls/button) control supports styles and templates that allow developers and designers to create visually compelling effects and a consistent product appearance. The WPF Button is implemented through the `ButtonAdv` class. +The [WPF Button](https://www.syncfusion.com/wpf-controls/button) control supports styles and templates that allow developers and designers to create visually compelling effects and a consistent product appearance. The WPF Button is implemented through the [ButtonAdv](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html) class. This document provides information about changing the visual appearance of the Button control. You can also edit the structure of the Button control by using Blend and Visual Studio to customize its appearance. diff --git a/wpf/Button/Themes.md b/wpf/Button/Themes.md index 60e40b0a0..1587cd720 100644 --- a/wpf/Button/Themes.md +++ b/wpf/Button/Themes.md @@ -9,7 +9,7 @@ documentation: ug # Themes in WPF Button (ButtonAdv) -The [WPF Button](https://www.syncfusion.com/wpf-controls/button) control supports various built-in themes. The WPF Button is implemented through the `ButtonAdv` class. Refer to the following links to apply themes to the WPF Button: +The [WPF Button](https://www.syncfusion.com/wpf-controls/button) control supports various built-in themes. The WPF Button is implemented through the [ButtonAdv](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html) class. Refer to the following links to apply themes to the WPF Button: * [Apply theme using SfSkinManager](https://help.syncfusion.com/wpf/themes/skin-manager) diff --git a/wpf/Button/Toggle-State.md b/wpf/Button/Toggle-State.md index 4b4d89f6d..8b514c19e 100644 --- a/wpf/Button/Toggle-State.md +++ b/wpf/Button/Toggle-State.md @@ -9,7 +9,7 @@ documentation: ug # Toggle State in WPF Button (ButtonAdv) -The [WPF Button](https://www.syncfusion.com/wpf-controls/button) control can also be used as a ToggleButton, similar to an on/off switch, when the [IsCheckable](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_IsCheckable) property is set to **true**. The WPF Button is implemented through the `ButtonAdv` class. The default value of this property is **false**. +The [WPF Button](https://www.syncfusion.com/wpf-controls/button) control can also be used as a ToggleButton, similar to an on/off switch, when the [IsCheckable](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_IsCheckable) property is set to **true**. The WPF Button is implemented through the [ButtonAdv](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html) class. The default value of this property is **false**. N> In addition to the [IsCheckable](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_IsCheckable) property, the [IsChecked](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html#Syncfusion_Windows_Tools_Controls_ButtonAdv_IsChecked) property lets you check the WPF Button by default. During initial rendering, the WPF Button appears in the **on** state when you use the latter property. diff --git a/wpf/GridSplitter/Appearance.md b/wpf/GridSplitter/Appearance.md index 31628a59d..e35c73817 100644 --- a/wpf/GridSplitter/Appearance.md +++ b/wpf/GridSplitter/Appearance.md @@ -9,7 +9,7 @@ documentation: ug # Appearance in WPF GridSplitter (SfGridSplitter) -This section explains the UI customization and styling options available in the [WPF GridSplitter](https://www.syncfusion.com/wpf-controls/gridsplitter) control. The WPF GridSplitter is implemented through the `SfGridSplitter` class. For API reference, see the [WPF GridSplitter](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Input.SfGridSplitter.html) class. +This section explains the UI customization and styling options available in the [WPF GridSplitter](https://www.syncfusion.com/wpf-controls/gridsplitter) control. The WPF GridSplitter is implemented through the [SfGridSplitter](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Input.SfGridSplitter.html) class. ## Setting the Background diff --git a/wpf/GridSplitter/Getting-Started.md b/wpf/GridSplitter/Getting-Started.md index 9523d4460..f6895dd22 100644 --- a/wpf/GridSplitter/Getting-Started.md +++ b/wpf/GridSplitter/Getting-Started.md @@ -9,7 +9,7 @@ documentation: ug # Getting Started with WPF GridSplitter (SfGridSplitter) -This section explains how to create a [WPF GridSplitter](https://www.syncfusion.com/wpf-controls/gridsplitter) and describes its structure. The WPF GridSplitter is implemented through the `SfGridSplitter` class. +This section explains how to create a [WPF GridSplitter](https://www.syncfusion.com/wpf-controls/gridsplitter) and describes its structure. The WPF GridSplitter is implemented through the [SfGridSplitter](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Input.SfGridSplitter.html) class. ## Structure of WPF GridSplitter diff --git a/wpf/GridSplitter/Overview.md b/wpf/GridSplitter/Overview.md index dead0b387..a77c69063 100644 --- a/wpf/GridSplitter/Overview.md +++ b/wpf/GridSplitter/Overview.md @@ -9,7 +9,7 @@ documentation: ug # About Syncfusion® WPF GridSplitter (SfGridSplitter) Control -The [WPF GridSplitter](https://www.syncfusion.com/wpf-controls/gridsplitter) is a container control that helps split the available space horizontally or vertically with a movable splitter and arrange the visual elements inside it. The WPF GridSplitter is implemented through the `SfGridSplitter` class. For API reference, see the [WPF GridSplitter](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Input.SfGridSplitter.html) class. +The [WPF GridSplitter](https://www.syncfusion.com/wpf-controls/gridsplitter) is a container control that helps split the available space horizontally or vertically with a movable splitter and arrange the visual elements inside it. The WPF GridSplitter is implemented through the [SfGridSplitter](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Input.SfGridSplitter.html) class. ![WPF GridSplitter resize and collapse](Overview-images/overview.png) From 84c4610c7724129e2a2ae430c4cfaeb5a21676a7 Mon Sep 17 00:00:00 2001 From: Madhavansf Date: Thu, 3 Sep 2026 12:16:45 +0530 Subject: [PATCH 5/5] repeated words correct added --- wpf/Button/Themes.md | 2 +- wpf/GridSplitter/Appearance.md | 2 +- wpf/GridSplitter/Getting-Started.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wpf/Button/Themes.md b/wpf/Button/Themes.md index 1587cd720..dcd7a5558 100644 --- a/wpf/Button/Themes.md +++ b/wpf/Button/Themes.md @@ -9,7 +9,7 @@ documentation: ug # Themes in WPF Button (ButtonAdv) -The [WPF Button](https://www.syncfusion.com/wpf-controls/button) control supports various built-in themes. The WPF Button is implemented through the [ButtonAdv](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html) class. Refer to the following links to apply themes to the WPF Button: +The [WPF Button](https://www.syncfusion.com/wpf-controls/button) control supports various built-in themes. The WPF Button is implemented through the [ButtonAdv](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html) class. Refer to the following links to apply themes to the control: * [Apply theme using SfSkinManager](https://help.syncfusion.com/wpf/themes/skin-manager) diff --git a/wpf/GridSplitter/Appearance.md b/wpf/GridSplitter/Appearance.md index e35c73817..1592307b5 100644 --- a/wpf/GridSplitter/Appearance.md +++ b/wpf/GridSplitter/Appearance.md @@ -119,7 +119,7 @@ N> [View Sample in GitHub](https://github.com/SyncfusionExamples/syncfusion-grid ## Theme -The WPF GridSplitter supports various built-in themes. Refer to the following links to apply themes to the WPF GridSplitter: +The WPF GridSplitter supports various built-in themes. Refer to the following links to apply themes to the control: * [Apply theme using SfSkinManager](https://help.syncfusion.com/wpf/themes/skin-manager) diff --git a/wpf/GridSplitter/Getting-Started.md b/wpf/GridSplitter/Getting-Started.md index f6895dd22..c16ca7d17 100644 --- a/wpf/GridSplitter/Getting-Started.md +++ b/wpf/GridSplitter/Getting-Started.md @@ -649,7 +649,7 @@ N> [View Sample in GitHub](https://github.com/SyncfusionExamples/syncfusion-grid ## Theme -The WPF GridSplitter supports various built-in themes. Refer to the following links to apply themes to the WPF GridSplitter: +The WPF GridSplitter supports various built-in themes. Refer to the following links to apply themes to the control: * [Apply theme using SfSkinManager](https://help.syncfusion.com/wpf/themes/skin-manager)