diff --git a/WindowsForms/Folder-Browser/FAQ/What-are-FolderBrowser-Flags.md b/WindowsForms/Folder-Browser/FAQ/What-are-FolderBrowser-Flags.md index fc8d5ed1f..7498762dd 100644 --- a/WindowsForms/Folder-Browser/FAQ/What-are-FolderBrowser-Flags.md +++ b/WindowsForms/Folder-Browser/FAQ/What-are-FolderBrowser-Flags.md @@ -7,15 +7,15 @@ control: Tools documentation: ug --- -# Folder browser flags in Windows Forms FolderBrowser +# Flags in WinForms Folder Browser -This page explains about What are folder browser flags in Windows Forms Folder Browser and more details. +This page explains about What are Flags in WinForms Folder Browser and more details. -## What are folder browser flags in Windows Forms Folder Browser +## What are Flags in WinForms Folder Browser -Flags can be used to set various styles for the FolderBrowser Dialog. Each style has it's own behavior and these styles can be added or removed to get the desired style for the FolderBrowser Dialog. +Flags can be used to set various styles for the WinForms Folder Browser Dialog. Each style has it's own behavior and these styles can be added or removed to get the desired style for the Dialog. -Look at the below given snippet to apply "RestrictToSubfolders" style and to remove the "ShowTextBox" style for the FolderBrowser Dialog. +Look at the below given snippet to apply "RestrictToSubfolders" style and to remove the "ShowTextBox" style for the WinForms Folder Browser Dialog. {% tabs %} diff --git a/WindowsForms/Folder-Browser/FolderBrowserCallback-Event.md b/WindowsForms/Folder-Browser/FolderBrowserCallback-Event.md index f72ad991f..c088bd935 100644 --- a/WindowsForms/Folder-Browser/FolderBrowserCallback-Event.md +++ b/WindowsForms/Folder-Browser/FolderBrowserCallback-Event.md @@ -7,9 +7,9 @@ control: Tools documentation: ug --- -# Browser Callback Event in Windows Forms FolderBrowser +# Browser Callback Event in WinForms Folder Browser -The [FolderBrowserCallback event](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.FolderBrowser.html) occurs when an event within the folder browser dialog triggers a call to the validation callback. The event handler receives an argument of type [FolderBrowserCallbackEventArgs](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.FolderBrowserCallbackEventArgs.html). +The [FolderBrowserCallback event](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.FolderBrowser.html) occurs when an event within the WinForms Folder Browser dialog triggers a call to the validation callback. The event handler receives an argument of type [FolderBrowserCallbackEventArgs](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.FolderBrowserCallbackEventArgs.html). The following [FolderBrowserCallbackEventArgs](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.FolderBrowserCallbackEventArgs.html) members provide information specific to this event. @@ -26,7 +26,7 @@ Specifies whether the dialog is either dismissed or retained depending upon this FolderBrowserCallbackSetState -Gets/sets the Folder Browser dialog's state. +Gets/sets the WinForms Folder Browser dialog's state. BrowseCallbackText diff --git a/WindowsForms/Folder-Browser/Getting-Started.md b/WindowsForms/Folder-Browser/Getting-Started.md index 929e3103b..d82953b2f 100644 --- a/WindowsForms/Folder-Browser/Getting-Started.md +++ b/WindowsForms/Folder-Browser/Getting-Started.md @@ -7,7 +7,7 @@ control: Tools documentation: ug --- -# Getting Started with Windows Forms FolderBrowser +# Getting Started with WinForms Folder Browser ## Assembly deployment @@ -17,17 +17,17 @@ You can find more details about installing the NuGet package in a Windows Forms [How to install nuget packages](https://help.syncfusion.com/windowsforms/installation/install-nuget-packages) -## Create a simple application with FolderBrowser +## Create a simple application with WinForms Folder Browser -You can create a Windows Forms application with the FolderBrowser control using the following steps: +You can create a Windows Forms application with the WinForms Folder Browser control using the following steps: ## Create a project -Create a new Windows Forms project in Visual Studio to select the a folder using the FolderBrowser control. +Create a new Windows Forms project in Visual Studio to select the a folder using the WinForms Folder Browser control. ## Add control through designer -The FolderBrowser control can be added to an application by dragging it from the toolbox to a designer view. The **Syncfusion.Shared.Base** assembly reference will be added automatically to the project. +The WinForms Folder Browser control can be added to an application by dragging it from the toolbox to a designer view. The **Syncfusion.Shared.Base** assembly reference will be added automatically to the project. ![wf domain up down control added by designer](Getting-Started_images/wf-folder-browser-control-added-by-designer.png) @@ -37,7 +37,7 @@ To add the control manually in C#, follow the given steps: 1. Add the **Syncfusion.Shared.Base** assembly reference to the project. -2. Include the FolderBrowser control namespace **Syncfusion.Windows.Forms;**. +2. Include the WinForms Folder Browser control namespace **Syncfusion.Windows.Forms;**. {% capture codesnippet1 %} {% tabs %} @@ -51,7 +51,7 @@ Imports Syncfusion.Windows.Forms.Tools {% endcapture %} {{ codesnippet1 | OrderList_Indent_Level_1 }} -3. Create a FolderBrowser control instance, and invoke the [FolderBrowser.ShowDialog()](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.FolderBrowser.html#Syncfusion_Windows_Forms_FolderBrowser_ShowDialog().html) method to display the FolderBrowser dialog. +3. Create a WinForms Folder Browser control instance, and invoke the [FolderBrowser.ShowDialog()](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.FolderBrowser.html#Syncfusion_Windows_Forms_FolderBrowser_ShowDialog().html) method to display the dialog. {% capture codesnippet2 %} {% tabs %} @@ -93,7 +93,7 @@ Me.folderBrowser1.ShowDialog() ## Auto complete file path -The FolderBrowser control supports editing folder location and auto-complete, which displays available folder paths in a drop-down list to choose by setting the folder browser [Style](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.FolderBrowser.html#Syncfusion_Windows_Forms_FolderBrowser_Style) to ShowTextBox. +The WinForms Folder Browser control supports editing folder location and auto-complete, which displays available folder paths in a drop-down list to choose by setting its [Style](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.FolderBrowser.html#Syncfusion_Windows_Forms_FolderBrowser_Style) to ShowTextBox. {% tabs %} {% highlight C# %} diff --git a/WindowsForms/Folder-Browser/LocationSettings.md b/WindowsForms/Folder-Browser/LocationSettings.md index 35d5dc4cb..8a8d8377b 100644 --- a/WindowsForms/Folder-Browser/LocationSettings.md +++ b/WindowsForms/Folder-Browser/LocationSettings.md @@ -7,11 +7,11 @@ control: Tools documentation: ug --- -# Location Settings in Windows Forms FolderBrowser +# Location Settings in WinForms Folder Browser -This section deals with the location settings of the FolderBrowser control. +This section deals with the location settings of the WinForms Folder Browser control. -The FolderBrowser allows the user to provide the location from which browsing should start. It also provides various options from which the root folder for browsing can be selected. The following properties illustrate this. +The WinForms Folder Browser allows the user to provide the location from which browsing should start. It also provides various options from which the root folder for browsing can be selected. The following properties illustrate this. * [StartLocation](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.FolderBrowser.html#Syncfusion_Windows_Forms_FolderBrowser_StartLocation) * [CustomStartLocation](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.FolderBrowser.html#Syncfusion_Windows_Forms_FolderBrowser_CustomStartLocation) @@ -62,6 +62,6 @@ Me.folderBrowser1.SelectLocation = "C:\\Program Files\\Syncfusion\\Essential Stu ![Location settings](Overview_images/Overview_img410.jpeg) -A Sample which demonstrates the Location Settings of FolderBrowser is available in the below sample installation path. +A Sample which demonstrates the Location Settings of WinForms Folder Browser is available in the below sample installation path. ..My Documents\Syncfusion\EssentialStudio\_Version Number_\Windows\Tools.Windows\Samples\2.0\Editors Package\FolderBrowserDemo diff --git a/WindowsForms/Folder-Browser/Overview.md b/WindowsForms/Folder-Browser/Overview.md index 52e8662b1..773706d52 100644 --- a/WindowsForms/Folder-Browser/Overview.md +++ b/WindowsForms/Folder-Browser/Overview.md @@ -7,8 +7,8 @@ control: Tools documentation: ug --- -# About Syncfusion® Windows Forms FolderBrowser Control +# About Syncfusion® WinForms Folder Browser Control -The Essential® Tools FolderBrowser component provides a convenient and easy to use object oriented wrapper for the Win32 Shell Folder Browser API. This class completely abstracts the intricacies involved in using the various complex Shell API functions, structures and callback routines required for working with the Windows Folder Selection Dialog and allows Windows Forms developers to work with.NET-centric properties, events and methods. +The Essential® Tools WinForms Folder Browser component provides a convenient and easy to use object oriented wrapper for the Win32 Shell Folder Browser API. This class completely abstracts the intricacies involved in using the various complex Shell API functions, structures and callback routines required for working with the Windows Folder Selection Dialog and allows Windows Forms developers to work with.NET-centric properties, events and methods. ![Folder Browser for Windows Forms](Overview_images/Overview_img405.jpeg) diff --git a/WindowsForms/Folder-Browser/StyleSettings.md b/WindowsForms/Folder-Browser/StyleSettings.md index df49e0ded..9f04a9316 100644 --- a/WindowsForms/Folder-Browser/StyleSettings.md +++ b/WindowsForms/Folder-Browser/StyleSettings.md @@ -7,7 +7,7 @@ control: Tools documentation: ug --- -# Style Settings in Windows Forms FolderBrowser +# Style Settings in WinForms Folder Browser The various options of the [Style](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.FolderBrowser.html#Syncfusion_Windows_Forms_FolderBrowser_Style) property are described below. @@ -21,7 +21,7 @@ The various options of the [Style](https://help.syncfusion.com/cr/windowsforms/S * AllowUrls - Displays URLs. 'NewDialogStyle' and 'BrowseForEverything' must be set along with this flag. * ShowAdministrativeShares - Displays administrative shares existing on the remote system. * ShowShares - Displays shareable resources existing on the remote system. -* ShowTextBox - Displays textbox in the FolderBrowser Dialog. +* ShowTextBox - Displays textbox in the WinForms Folder Browser Dialog. * StatusText - Includes status area in the dialog box. StatusText can be specified in the FolderBrowserCallBack event handler. This style does not apply to 'NewDialogStyle'. * UAHint - Adds an usage hint to the folder dialog. It can be applied only with 'NewDialogStyle'. * Validate - Typing invalid name in the textbox triggers FolderBrowserCallBack event. @@ -52,6 +52,6 @@ Me.folderBrowser1.Style = Syncfusion.Windows.Forms.FolderBrowserStyles.ShowTextB -A sample which demonstrates the Style Settings of FolderBrowser is available in the below sample installation path. +A sample which demonstrates the Style Settings of WinForms Folder Browser is available in the below sample installation path. …\_My Documents\Syncfusion\EssentialStudio\Version Number\Windows\Tools.Windows\Samples\Advanced Editor Functions\ActionGroupingDemo_ diff --git a/WindowsForms/Folder-Browser/TextSettings.md b/WindowsForms/Folder-Browser/TextSettings.md index 0cc50b683..5025fe2f2 100644 --- a/WindowsForms/Folder-Browser/TextSettings.md +++ b/WindowsForms/Folder-Browser/TextSettings.md @@ -7,11 +7,11 @@ control: Tools documentation: ug --- -# Text Settings in Windows Forms FolderBrowser +# Text Settings in WinForms Folder Browser -The text settings of the FolderBrowser control are described below. +The text settings of the WinForms Folder Browser control are described below. -The text for the FolderBrowser can be set using the [Description](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.FolderBrowser.html#Syncfusion_Windows_Forms_FolderBrowser_Description) property. +The text for the WinForms Folder Browser can be set using the [Description](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.FolderBrowser.html#Syncfusion_Windows_Forms_FolderBrowser_Description) property. {% tabs %} diff --git a/WindowsForms/calculator/Calculator-Appearance.md b/WindowsForms/calculator/Calculator-Appearance.md index 4a8dab8ca..8954e9a2b 100644 --- a/WindowsForms/calculator/Calculator-Appearance.md +++ b/WindowsForms/calculator/Calculator-Appearance.md @@ -7,11 +7,11 @@ control: Calculator documentation: ug --- -# Calculator Appearance in Windows Forms Calculator +# Calculator Appearance in WinForms Calculator -This section will walk you through the different appearance settings for the [Calculator control](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html). +This section will walk you through the different appearance settings for the [WinForms Calculator control](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html). -* [Layout Modes](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html#Syncfusion_Windows_Forms_Tools_CalculatorControl_LayoutType) - Layout of the components in a [Calculator control](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html). +* [Layout Modes](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html#Syncfusion_Windows_Forms_Tools_CalculatorControl_LayoutType) - Layout of the components in a [WinForms Calculator control](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html). * Background Settings - Background settings for the control. * Border Styles - Border for the control. * Button Spacing - Spacing between the Calculator buttons. @@ -19,7 +19,7 @@ This section will walk you through the different appearance settings for the [Ca ## Layout Modes -The [Calculator control](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html) can be laid out in the following modes. +The [WinForms Calculator control](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html) can be laid out in the following modes. * WindowsStandard Mode - Modeled with windows standard layout(Default) and * Financial Mode - Modeled with windows financial layout. @@ -35,15 +35,15 @@ Me.calculatorControl1.LayoutType = Syncfusion.Windows.Forms.Tools.CalculatorLayo ![Financial calculator](Overview_images/Overview_img114.jpeg) -N> We can set different button styles for the Calculator control, using [CalculatorControl.ButtonStyle](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html#Syncfusion_Windows_Forms_Tools_CalculatorControl_ButtonStyle) property. Refer_ Themes and Button Styles _topic to know more. [ButtonStyles](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html#Syncfusion_Windows_Forms_Tools_CalculatorControl_ButtonStyle) can be applied to both the [layout modes](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html#Syncfusion_Windows_Forms_Tools_CalculatorControl_LayoutType). +N> We can set different button styles for the WinForms Calculator control, using [CalculatorControl.ButtonStyle](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html#Syncfusion_Windows_Forms_Tools_CalculatorControl_ButtonStyle) property. Refer_ Themes and Button Styles _topic to know more. [ButtonStyles](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html#Syncfusion_Windows_Forms_Tools_CalculatorControl_ButtonStyle) can be applied to both the [layout modes](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html#Syncfusion_Windows_Forms_Tools_CalculatorControl_LayoutType). ## Background Settings -Background settings for a Calculator control is discussed in this section. +Background settings for a WinForms Calculator control is discussed in this section. ### Background Color -The background of the Calculator can be painted using the below properties. +The background of the WinForms Calculator can be painted using the below properties. * [BackColor](https://docs.microsoft.com/en-us/dotnet/api/system.windows.forms.control.backcolor?redirectedfrom=MSDN&view=netframework-4.7.2#System_Windows_Forms_Control_BackColor) * [BackgroundColor](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html#Syncfusion_Windows_Forms_Tools_CalculatorControl_BackgroundColor) @@ -63,7 +63,7 @@ Me.calculatorControl1.BackgroundColor = New Syncfusion.Drawing.BrushInfo(Syncfus ### Background Image -The background of the Calculator control can be filled with an image using [BackgroundImage](https://docs.microsoft.com/en-us/dotnet/api/system.windows.forms.control.backgroundimage?redirectedfrom=MSDN&view=netframework-4.7.2#System_Windows_Forms_Control_BackgroundImage) property. +The background of the WinForms Calculator control can be filled with an image using [BackgroundImage](https://docs.microsoft.com/en-us/dotnet/api/system.windows.forms.control.backgroundimage?redirectedfrom=MSDN&view=netframework-4.7.2#System_Windows_Forms_Control_BackgroundImage) property. {% tabs %} {% highlight C# %} @@ -80,7 +80,7 @@ Me.calculatorControl1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.C ## Border Styles -The [BorderStyle](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html#Syncfusion_Windows_Forms_Tools_CalculatorControl_BorderStyle) property used to specify the border style for the [Calculator control](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html). +The [BorderStyle](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html#Syncfusion_Windows_Forms_Tools_CalculatorControl_BorderStyle) property used to specify the border style for the [WinForms Calculator control](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html). {% tabs %} {% highlight C# %} @@ -95,7 +95,7 @@ this.calculatorControl1.BorderStyle = System.Windows.Forms.Border3DStyle.Etched; ## Button Spacing -The default spacing between the Calculator buttons can be modified by enabling [UseVerticalAndHorizontalSpacing](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html#Syncfusion_Windows_Forms_Tools_CalculatorControl_UseVerticalAndHorizontalSpacing) property. +The default spacing between the WinForms Calculator buttons can be modified by enabling [UseVerticalAndHorizontalSpacing](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html#Syncfusion_Windows_Forms_Tools_CalculatorControl_UseVerticalAndHorizontalSpacing) property. {% tabs %} {% highlight C# %} diff --git a/WindowsForms/calculator/Calculator-Events.md b/WindowsForms/calculator/Calculator-Events.md index 4d0548ca6..e0a5bdc65 100644 --- a/WindowsForms/calculator/Calculator-Events.md +++ b/WindowsForms/calculator/Calculator-Events.md @@ -7,17 +7,17 @@ control: Calculator documentation: ug --- -# Calculator Events in Windows Forms Calculator +# Events in WinForms Calculator -The event for [Calculator control](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html) and [PopupCalculator](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.PopupCalculator.html) control are discussed in this section. +The event for [WinForms Calculator control](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html) and [PopupCalculator](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.PopupCalculator.html) control are discussed in this section. ## ValueCalculated Event -The [ValueCalculated event](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html) fires each time the value of the [Calculator control](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html) is changed. That is, even if you just press any digit, this event will be handled. +The [ValueCalculated event](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html) fires each time the value of the [WinForms Calculator control](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html) is changed. That is, even if you just press any digit, this event will be handled. The event handler receives an argument of type [CalculatorValueCalculatedEventArgs](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorValueCalculatedEventArgs.html). To get the final result, use [LastAction](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorValueCalculatedEventArgs.html#Syncfusion_Windows_Forms_Tools_CalculatorValueCalculatedEventArgs_LastAction) property of the [CalculatorValueCalculatedEventArgs](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorValueCalculatedEventArgs.html) in the [ValueCalculated event](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html). -We can retrieve the value of the [Calculator control](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html) after '=' button is pressed using the following code snippet. +We can retrieve the value of the [WinForms Calculator control](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html) after '=' button is pressed using the following code snippet. {% tabs %} {% highlight c# %} @@ -51,7 +51,7 @@ End Sub ### Closing Event of the PopupCalculator Control -This [PopupCalculator closing event](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.PopupCalculator.html) will be raised by [PopupCalculator](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.PopupCalculator.html) when closing after "=" button was clicked. We can implement this event to display the final value of the [Calculator control](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html) as follows. +This [PopupCalculator closing event](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.PopupCalculator.html) will be raised by [PopupCalculator](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.PopupCalculator.html) when closing after "=" button was clicked. We can implement this event to display the final value of the [WinForms Calculator control](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html) as follows. {% tabs %} {% highlight c# %} diff --git a/WindowsForms/calculator/Display-TextBox.md b/WindowsForms/calculator/Display-TextBox.md index 6c0220230..de46ffc46 100644 --- a/WindowsForms/calculator/Display-TextBox.md +++ b/WindowsForms/calculator/Display-TextBox.md @@ -7,9 +7,9 @@ control: Calculator documentation: ug --- -# Display TextBox in Windows Forms Calculator +# Display TextBox in WinForms Calculator -The [Calculator control](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html) has a display text area on its top corner, which displays all the digits and the calculations performed on the calculator. This display area is displayed by default. To hide this display area, set the [ShowDisplayArea](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html#Syncfusion_Windows_Forms_Tools_CalculatorControl_ShowDisplayArea) property to false. +The [WinForms Calculator control](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html) has a display text area on its top corner, which displays all the digits and the calculations performed on the calculator. This display area is displayed by default. To hide this display area, set the [ShowDisplayArea](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html#Syncfusion_Windows_Forms_Tools_CalculatorControl_ShowDisplayArea) property to false. The below properties controls the behavior of the display area. @@ -55,7 +55,7 @@ Me.calculatorControl1.UseUserOverride = True {% seealso %} -[How to customize the calculator display text area to use NumberGroupSeparator?](http://help.syncfusion.com/windowsforms/calculator/faq/how-to-customize-the-calculator-display-text-area-to-use-numbergroupseparator) +[How to customize the WinForms Calculator display text area to use NumberGroupSeparator?](http://help.syncfusion.com/windowsforms/calculator/faq/how-to-customize-the-calculator-display-text-area-to-use-numbergroupseparator) {% endseealso %} diff --git a/WindowsForms/calculator/Getting-Started.md b/WindowsForms/calculator/Getting-Started.md index ba229d891..b1b4697c3 100644 --- a/WindowsForms/calculator/Getting-Started.md +++ b/WindowsForms/calculator/Getting-Started.md @@ -7,7 +7,7 @@ control: Calculator documentation: ug --- -# Getting Started with Windows Forms Calculator +# Getting Started with WinForms Calculator ## Assembly deployment @@ -17,17 +17,17 @@ You can find more details about installing the NuGet package in a Windows Forms [How to install nuget packages](https://help.syncfusion.com/windowsforms/installation/install-nuget-packages) -## Create a simple application with Calculator +## Create a simple application with WinForms Calculator -You can create a Windows Forms application with the [Calculator control](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html) using the following steps: +You can create a Windows Forms application with the [WinForms Calculator control](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html) using the following steps: ## Create a project -Create a new Windows Forms project in Visual Studio to display the [Calculator control](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html). +Create a new Windows Forms project in Visual Studio to display the [WinForms Calculator control](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html). ## Add control through designer -The [Calculator control](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html) can be added to an application by dragging it from the toolbox to a designer view. The following required assembly references will be added automatically to the project: +The [WinForms Calculator control](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html) can be added to an application by dragging it from the toolbox to a designer view. The following required assembly references will be added automatically to the project: * Syncfusion.Grid.Base * Syncfusion.Grid.Windows @@ -51,7 +51,7 @@ To add the control manually in C#, follow the given steps: * Syncfusion.Tools.Base * Syncfusion.Tools.Windows -2. Include the [Calculator control](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html) namespace **Syncfusion.Windows.Forms.Tools;**. +2. Include the [WinForms Calculator control](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html) namespace **Syncfusion.Windows.Forms.Tools;**. {% capture codesnippet1 %} {% tabs %} @@ -65,7 +65,7 @@ Imports Syncfusion.Windows.Forms.Tools {% endcapture %} {{ codesnippet1 | OrderList_Indent_Level_1 }} -3. Create a [Calculator control](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html) instance, and add it to the form. +3. Create a [WinForms Calculator control](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html) instance, and add it to the form. {% capture codesnippet2 %} {% tabs %} diff --git a/WindowsForms/calculator/Overview.md b/WindowsForms/calculator/Overview.md index d32a762b7..36d16f778 100644 --- a/WindowsForms/calculator/Overview.md +++ b/WindowsForms/calculator/Overview.md @@ -7,8 +7,8 @@ control: Calculator documentation: ug --- -# About Syncfusion® Windows Forms Calculator Control +# About Syncfusion® WinForms Calculator Control -The Essential® Tools CalculatorControl encapsulates the functionality of a standard calculator. It provides an easy way to implement a complete calculator in your applications. The value of the CalculatorControl in the form is maintained internally and also provides the value in the format required. The CalculatorValue class provides methods to get the value of the CalculatorControl as a String or as a Double Value. It supports Office2007 color schemes. +The Essential® Tools WinForms Calculator Control encapsulates the functionality of a standard calculator. It provides an easy way to implement a complete calculator in your applications. The value of the Control in the form is maintained internally and also provides the value in the format required. The CalculatorValue class provides methods to get the value of the Control as a String or as a Double Value. It supports Office2007 color schemes. ![Overview of Calculator](Overview_images/Overview_img110.png) \ No newline at end of file diff --git a/WindowsForms/calculator/Pop-up-Calculator-Control.md b/WindowsForms/calculator/Pop-up-Calculator-Control.md index 22919a827..7ca79ba03 100644 --- a/WindowsForms/calculator/Pop-up-Calculator-Control.md +++ b/WindowsForms/calculator/Pop-up-Calculator-Control.md @@ -7,11 +7,11 @@ control: Editors Package documentation: ug --- -# Popup Calculator in Windows Forms Calculator +# Popup Calculator in WinForms Calculator -The PopupCalculator class can be used to display a popup Calculator control. This class can be created programmatically. +The PopupCalculator class can be used to display a popup WinForms Calculator control. This class can be created programmatically. -The PopupCalculator control lets you embed a Calculator control object to a button for example. Drop the button onto the form and add the following code snippet. +The PopupCalculator control lets you embed a WinForms Calculator control object to a button for example. Drop the button onto the form and add the following code snippet. {% highlight c# %} diff --git a/WindowsForms/calculator/Popup-Calculator.md b/WindowsForms/calculator/Popup-Calculator.md index d1a7a4ea5..59a22c71d 100644 --- a/WindowsForms/calculator/Popup-Calculator.md +++ b/WindowsForms/calculator/Popup-Calculator.md @@ -7,11 +7,11 @@ control: Calculator documentation: ug --- -# Popup Calculator in Windows Forms Calculator +# Popup Calculator in WinForms Calculator -The [PopupCalculator](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.PopupCalculator.html) class can be used to display a popup [Calculator control](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html). This class can be created programmatically. +The [PopupCalculator](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.PopupCalculator.html) class can be used to display a popup [WinForms Calculator control](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html). This class can be created programmatically. -The [PopupCalculator](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.PopupCalculator.html) control lets you embed a [Calculator control](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html) object to a button for example. Drop the button onto the form and add the following code snippet. +The [PopupCalculator](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.PopupCalculator.html) control lets you embed a [WinForms Calculator control](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html) object to a button for example. Drop the button onto the form and add the following code snippet. {% tabs %} {% highlight C# %} diff --git a/WindowsForms/calculator/Runtime-Features.md b/WindowsForms/calculator/Runtime-Features.md index 82d314cd8..2b748943e 100644 --- a/WindowsForms/calculator/Runtime-Features.md +++ b/WindowsForms/calculator/Runtime-Features.md @@ -7,13 +7,13 @@ control: Calculator documentation: ug --- -# RunTime Features in Windows Forms Calculator +# RunTime Features in WinForms Calculator This section elaborated keyboard support for the control. ## Keyboard Support -Essential® Tools [Calculator control](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html) does the functionality of a normal calculator, using the Mouse or Keyboard, at run time. The control provides Keyboard equivalents for the Calculator buttons. They are listed in the below table. +Essential® Tools [WinForms Calculator control](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html) does the functionality of a normal calculator, using the Mouse or Keyboard, at run time. The control provides Keyboard equivalents for the Calculator buttons. They are listed in the below table. @@ -45,17 +45,17 @@ CTRL+L
7 -Puts this number in the calculator display. +Puts this number in the WinForms Calculator display. 7
8 -Puts this number in the calculator display. +Puts this number in the WinForms Calculator display. 8
9 -Puts this number in the calculator display. +Puts this number in the WinForms Calculator display. 9
@@ -75,17 +75,17 @@ CTRL+R
4 -Puts this number in the calculator display. +Puts this number in the WinForms Calculator display. 4
5 -Puts this number in the calculator display. +Puts this number in the WinForms Calculator display. 5
6 -Puts this number in the calculator display. +Puts this number in the WinForms Calculator display. 6
@@ -105,17 +105,17 @@ CTRL+M
1 -Puts this number in the calculator display. +Puts this number in the WinForms Calculator display. 1
2 -Puts this number in the calculator display. +Puts this number in the WinForms Calculator display. 2
3 -Puts this number in the calculator display. +Puts this number in the WinForms Calculator display. 3
diff --git a/WindowsForms/calculator/Style-Settings.md b/WindowsForms/calculator/Style-Settings.md index 5016e4d37..b44b001e4 100644 --- a/WindowsForms/calculator/Style-Settings.md +++ b/WindowsForms/calculator/Style-Settings.md @@ -7,13 +7,13 @@ control: Calculator documentation: ug --- -# Style Settings in Windows Forms Calculator +# Style Settings in WinForms Calculator This section discusses on the following styles: ## Button Flat Styles -The flat styles for the button objects in a Calculator control is set using [CalculatorControl.FlatStyle](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html#Syncfusion_Windows_Forms_Tools_CalculatorControl_FlatStyle) property. The styles are Flat, Popup, Standard (default) and System. +The flat styles for the button objects in a WinForms Calculator control is set using [CalculatorControl.FlatStyle](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html#Syncfusion_Windows_Forms_Tools_CalculatorControl_FlatStyle) property. The styles are Flat, Popup, Standard (default) and System. {% tabs %} {% highlight C# %} @@ -33,9 +33,9 @@ Me.calculatorControl1.FlatStyle = System.Windows.Forms.FlatStyle.Flat ## Themes and Button Styles -### Themes for the Calculator Control +### Themes for the WinForms Calculator Control -Essential® Tools [Calculator control](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html) is themed by default. To disable, set [ThemesEnabled](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html#Syncfusion_Windows_Forms_Tools_CalculatorControl_ThemesEnabled) property to false. +Essential® Tools [WinForms Calculator control](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html) is themed by default. To disable, set [ThemesEnabled](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html#Syncfusion_Windows_Forms_Tools_CalculatorControl_ThemesEnabled) property to false. {% tabs %} {% highlight c# %} @@ -55,7 +55,7 @@ Me.calculatorControl1.ThemesEnabled = False ### Button Styles -The [Calculator control](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html) supports the below button styles. [UseVisualStyle](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html#Syncfusion_Windows_Forms_Tools_CalculatorControl_UseVisualStyle) property should be set to true to enable button styles for the control. +The [WinForms Calculator control](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html) supports the below button styles. [UseVisualStyle](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html#Syncfusion_Windows_Forms_Tools_CalculatorControl_UseVisualStyle) property should be set to true to enable button styles for the control. * Classic (default) * Office2000 @@ -89,7 +89,7 @@ Me.calculatorControl1.ButtonStyle = Syncfusion.Windows.Forms.ButtonAppearance.Of ### OfficeColor Schemes -Essential® Tools [Calculator control](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html) supports all the three OfficeColorSchemes. When the ButtonStyle is set to Office2007 style, the color schemes will be blue by default. It can be modified using [Office2007Theme](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html#Syncfusion_Windows_Forms_Tools_CalculatorControl_Office2007Theme) property. +Essential® Tools [WinForms Calculator control](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html) supports all the three OfficeColorSchemes. When the ButtonStyle is set to Office2007 style, the color schemes will be blue by default. It can be modified using [Office2007Theme](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html#Syncfusion_Windows_Forms_Tools_CalculatorControl_Office2007Theme) property. {% tabs %} {% highlight c# %} @@ -109,7 +109,7 @@ Me.calculatorControl1.Office2007Theme = Syncfusion.Windows.Forms.Office2007Theme ### Custom Colors -We can also apply custom colors to the [Calculator control](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html) by setting [Office2007Theme](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html#Syncfusion_Windows_Forms_Tools_CalculatorControl_Office2007Theme) to "Managed" and specifying the custom color through the ApplyManagedColors method as follows. +We can also apply custom colors to the [WinForms Calculator control](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html) by setting [Office2007Theme](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html#Syncfusion_Windows_Forms_Tools_CalculatorControl_Office2007Theme) to "Managed" and specifying the custom color through the ApplyManagedColors method as follows. {% tabs %} {% highlight c# %} diff --git a/WindowsForms/calculator/faq/How-to-Simulate-a-Particular-button-in-the-Calculator.md b/WindowsForms/calculator/faq/How-to-Simulate-a-Particular-button-in-the-Calculator.md index 01aa56bda..f346b2143 100644 --- a/WindowsForms/calculator/faq/How-to-Simulate-a-Particular-button-in-the-Calculator.md +++ b/WindowsForms/calculator/faq/How-to-Simulate-a-Particular-button-in-the-Calculator.md @@ -7,9 +7,9 @@ control: Calculator documentation: ug --- -# How to Simulate a Button in Windows Forms Calculator +# How to Simulate a Button in WinForms Calculator -We can use [Calculator.ButtonAction](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html#Syncfusion_Windows_Forms_Tools_CalculatorControl_ButtonAction_Syncfusion_Windows_Forms_Tools_CalcActions_) method for this. When the user clicks the button, the [ButtonAction](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html#Syncfusion_Windows_Forms_Tools_CalculatorControl_ButtonAction_Syncfusion_Windows_Forms_Tools_CalcActions_) method of the Calculator control will call back the action of the particular button (in this example it is "=" button) and displays the result in the textbox area, using [CalcActions](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalcActions.html) Enumerator. This enumerator has all the actions that can be assigned to the calculator buttons including digits and arithmetic operators also. +We can use [Calculator.ButtonAction](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html#Syncfusion_Windows_Forms_Tools_CalculatorControl_ButtonAction_Syncfusion_Windows_Forms_Tools_CalcActions_) method for this. When the user clicks the button, the [ButtonAction](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html#Syncfusion_Windows_Forms_Tools_CalculatorControl_ButtonAction_Syncfusion_Windows_Forms_Tools_CalcActions_) method of the WinForms Calculator control will call back the action of the particular button (in this example it is "=" button) and displays the result in the textbox area, using [CalcActions](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalcActions.html) Enumerator. This enumerator has all the actions that can be assigned to the calculator buttons including digits and arithmetic operators also. {% tabs %} {% highlight C# %} diff --git a/WindowsForms/calculator/faq/How-to-customize-the-calculator-display-text-area-to-use-NumberGroupSeparator.md b/WindowsForms/calculator/faq/How-to-customize-the-calculator-display-text-area-to-use-NumberGroupSeparator.md index 682abd806..7817a88cc 100644 --- a/WindowsForms/calculator/faq/How-to-customize-the-calculator-display-text-area-to-use-NumberGroupSeparator.md +++ b/WindowsForms/calculator/faq/How-to-customize-the-calculator-display-text-area-to-use-NumberGroupSeparator.md @@ -7,13 +7,13 @@ control: Calculator documentation: ug --- -# How to Customize Calculator Display Area in Calculator +# How to Customize Display Area in WinForms Calculator -The [Calculator control](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html) by default does not allow the use of NumberGroupSeparator like in DoubleTextBox. +The [WinForms Calculator control](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html) by default does not allow the use of NumberGroupSeparator like in DoubleTextBox. ![Number group](Overview_images/Overview_img129.jpeg) -So to achieve this we need to derive the [Calculator control](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html) and override the CreateCalculatorDisplayBox() method. +So to achieve this we need to derive the [WinForms Calculator control](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.CalculatorControl.html) and override the CreateCalculatorDisplayBox() method. {% tabs %} {% highlight c# %}