diff --git a/WindowsForms/Form/FormCustomization.md b/WindowsForms/Form/FormCustomization.md index dc65811a9..9de40cf86 100644 --- a/WindowsForms/Form/FormCustomization.md +++ b/WindowsForms/Form/FormCustomization.md @@ -1,4 +1,4 @@ ---- +--- layout: post title: Form Customization in Windows Forms Form | Syncfusion® description: Form Customization in Form (SfForm) enables configuring icons, borders, shadow effects, and rounded corners for personalized window appearance. @@ -9,13 +9,13 @@ documentation: ug # Form Customization in Windows Forms Form (SfForm) -## Form icon +## WinForms Form icon -A form icon designates the picture that represents the form in the taskbar as well as the icon displayed on the title bar of the form. +A WinForms Form icon designates the image that represents it in the taskbar and appears on its title bar. -### Changing form icon +### Changing WinForms Form icon -The form icon displayed on the title bar and task bar can be changed by using the [Icon](https://learn.microsoft.com/en-us/dotnet/api/system.windows.forms.form.icon?view=windowsdesktop-7.0&viewFallbackFrom=net-5.0) property. +The WinForms Form icon displayed on the title bar and task bar can be changed by using the [Icon](https://learn.microsoft.com/en-us/dotnet/api/system.windows.forms.form.icon?view=windowsdesktop-7.0&viewFallbackFrom=net-5.0) property. {% tabs %} {% highlight c# %} @@ -28,9 +28,9 @@ Me.Icon = New Icon("sfIcon.ico") ![WindowsForms Form shows icon](formcustomization_images/windowsforms-form-shows-icon.png) -### Form icon alignment +### WinForms Form icon alignment -The form icon can be aligned vertically and horizontally by using the [Style.TitleBar.IconVerticalAlignment](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.Controls.Styles.TitleBarStyleInfo.html#Syncfusion_WinForms_Controls_Styles_TitleBarStyleInfo_IconVerticalAlignment) and [Style.TitleBar.IconHorizontalAlignment](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.Controls.Styles.TitleBarStyleInfo.html#Syncfusion_WinForms_Controls_Styles_TitleBarStyleInfo_IconHorizontalAlignment) properties. +The WinForms Form icon can be aligned vertically and horizontally by using the [Style.TitleBar.IconVerticalAlignment](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.Controls.Styles.TitleBarStyleInfo.html#Syncfusion_WinForms_Controls_Styles_TitleBarStyleInfo_IconVerticalAlignment) and [Style.TitleBar.IconHorizontalAlignment](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.Controls.Styles.TitleBarStyleInfo.html#Syncfusion_WinForms_Controls_Styles_TitleBarStyleInfo_IconHorizontalAlignment) properties. {% tabs %} {% highlight c# %} @@ -45,7 +45,7 @@ Me.Style.TitleBar.IconHorizontalAlignment = HorizontalAlignment.Right ![WindowsForms Form icon is alignment](formcustomization_images/windowsforms-form-icon-alignment.png) -## Form border +## WinForms Form border Appearance of the border can be customized by using the [Style.Border](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.Controls.Styles.FormVisualStyle.html#Syncfusion_WinForms_Controls_Styles_FormVisualStyle_Border) and [Style.InactiveBorder](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.Controls.Styles.FormVisualStyle.html#Syncfusion_WinForms_Controls_Styles_FormVisualStyle_InactiveBorder) properties. @@ -70,7 +70,7 @@ Me.Style.InactiveBorder = New Pen(Color.LightGray, 2) ## Shadow effect -Shadow effect of the form can be customized by using the [Style.ShadowOpacity](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.Controls.Styles.FormVisualStyle.html#Syncfusion_WinForms_Controls_Styles_FormVisualStyle_ShadowOpacity) and [Style.InactiveShadowOpacity](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.Controls.Styles.FormVisualStyle.html#Syncfusion_WinForms_Controls_Styles_FormVisualStyle_InactiveShadowOpacity) properties. +Shadow effect of the WinForms Form can be customized by using the [Style.ShadowOpacity](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.Controls.Styles.FormVisualStyle.html#Syncfusion_WinForms_Controls_Styles_FormVisualStyle_ShadowOpacity) and [Style.InactiveShadowOpacity](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.Controls.Styles.FormVisualStyle.html#Syncfusion_WinForms_Controls_Styles_FormVisualStyle_InactiveShadowOpacity) properties. {% tabs %} {% highlight c# %} @@ -95,9 +95,9 @@ N> Shadow can be disabled by setting the `ShadowOpacity` property as zero. ## Rounded corner -Rounded corners for `SfForm` can be enabled by using the [AllowRoundedCorners](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.Controls.SfForm.html#Syncfusion_WinForms_Controls_SfForm_AllowRoundedCorners) property. Rounded corners are not supported in OS versions lower than Windows 11. Enabling `AllowRoundedCorners` property will have no effect on those operating systems. +Rounded corners for `WinForms Form` can be enabled by using the [AllowRoundedCorners](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.Controls.SfForm.html#Syncfusion_WinForms_Controls_SfForm_AllowRoundedCorners) property. Rounded corners are not supported in OS versions lower than Windows 11. Enabling `AllowRoundedCorners` property will have no effect on those operating systems. -N> When the rounded corners are enabled, the border and shadow of the Form are drawn by the operating system. +N> When the rounded corners are enabled, the border and shadow of the WinForms Form are drawn by the operating system. {% tabs %} diff --git a/WindowsForms/Form/Getting-Started.md b/WindowsForms/Form/Getting-Started.md index 13442393a..9e233f412 100644 --- a/WindowsForms/Form/Getting-Started.md +++ b/WindowsForms/Form/Getting-Started.md @@ -13,9 +13,9 @@ documentation: ug Refer [control dependencies](https://help.syncfusion.com/windowsforms/control-dependencies#sfform) section to get the list of assemblies or NuGet package needs to be added as reference to use the control in any application. -## Converting Standard Form into SfForm +## Converting Standard Form into SfForm (WinForms Form) -The default form can be changed into SfForm by the following steps: +The default form can be changed into SfForm (WinForms Form) by the following steps: **Step 1:** Create a new Windows Forms Application in Visual Studio. @@ -38,7 +38,7 @@ Imports Syncfusion.WinForms.Controls {% endcapture %} {{ codesnippet1 | OrderList_Indent_Level_1 }} -**Step 4:** Change the base class of your form from `System.Windows.Forms.Form` to `SfForm`. +**Step 4:** Change the base class of your form from `System.Windows.Forms.Form` to `SfForm (WinForms Form)`. {% capture codesnippet2 %} {% tabs %} @@ -68,7 +68,7 @@ End Class ## Title Bar Customization -By default, the SfForm loads with the default appearance, which can be customized by using the [TitleBarStyleInfo](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.Controls.Styles.TitleBarStyleInfo.html) property. It contains all the settings for the appearance of the title bar. +By default, the WinForms Form loads with the default appearance, which can be customized by using the [TitleBarStyleInfo](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.Controls.Styles.TitleBarStyleInfo.html) property. It contains all the settings for the appearance of the title bar. {% tabs %} @@ -119,7 +119,7 @@ Me.Style.TitleBar.MinimizeButtonPressedBackColor = Color.Gray ## Border Customization -The borders of the form can be customized by using the [Style.Border](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.Controls.Styles.FormVisualStyle.html#Syncfusion_WinForms_Controls_Styles_FormVisualStyle_Border) and [Style.InactiveBorder](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.Controls.Styles.FormVisualStyle.html#Syncfusion_WinForms_Controls_Styles_FormVisualStyle_InactiveBorder) properties. +The borders of the WinForms Form can be customized by using the [Style.Border](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.Controls.Styles.FormVisualStyle.html#Syncfusion_WinForms_Controls_Styles_FormVisualStyle_Border) and [Style.InactiveBorder](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.Controls.Styles.FormVisualStyle.html#Syncfusion_WinForms_Controls_Styles_FormVisualStyle_InactiveBorder) properties. {% tabs %} @@ -138,7 +138,7 @@ Me.Style.InactiveBorder = New Pen(Color.Gray, 5) ## Loading User Control to the Title Bar -You can load any user control to the title bar of the SfForm instead of the title bar text by using the [TitleBarTextControl](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.Controls.SfForm.html#Syncfusion_WinForms_Controls_SfForm_TitleBarTextControl) property. +You can load any user control to the title bar of the WinForms Form instead of the title bar text by using the [TitleBarTextControl](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.Controls.SfForm.html#Syncfusion_WinForms_Controls_SfForm_TitleBarTextControl) property. {% tabs %} diff --git a/WindowsForms/Form/Localization.md b/WindowsForms/Form/Localization.md index 66e21cea2..3af18fd2c 100644 --- a/WindowsForms/Form/Localization.md +++ b/WindowsForms/Form/Localization.md @@ -1,4 +1,4 @@ ---- +--- layout: post title: Localization in Windows Forms Form control | Syncfusion® description: Localization in Form (SfForm) enables translating form resources, customizing localized content, and supporting multiple cultures using resource files. @@ -8,14 +8,14 @@ documentation: ug --- # Localization in Windows Forms Form (SfForm) -Localization is the process of translating the application resources into different languages for specific cultures. The SfForm can be localized by adding a [resource](https://learn.microsoft.com/en-us/previous-versions/visualstudio/visual-studio-2010/aa992030(v=vs.100)) file. The application culture can be changed by setting the [CurrentUICulture](https://learn.microsoft.com/en-us/dotnet/api/system.globalization.cultureinfo.currentuiculture?view=net-5.0) before the `InitializeComponent` method. +Localization is the process of translating the application resources into different languages for specific cultures. The WinForms Form can be localized by adding a [resource](https://learn.microsoft.com/en-us/previous-versions/visualstudio/visual-studio-2010/aa992030(v=vs.100)) file. The application culture can be changed by setting the [CurrentUICulture](https://learn.microsoft.com/en-us/dotnet/api/system.globalization.cultureinfo.currentuiculture?view=net-5.0) before the `InitializeComponent` method. ## Localize at Sample Level -To localize the SfForm based on `CurrentUICulture` using resource files, follow the steps below. +To localize the WinForms Form based on `CurrentUICulture` using resource files, follow the steps below. 1. Create a new folder and name it **Resources** in your application. -2. Add the default resource file of SfForm into the **Resources** folder. You can download the `Syncfusion.Shared.Base.resx` from the [GitHub](https://github.com/syncfusion/winforms-controls-localization-resx-files/blob/master/Syncfusion.Shared.Base/Syncfusion.Shared.Base.resx). +2. Add the default resource file of WinForms Form into the **Resources** folder. You can download the `Syncfusion.Shared.Base.resx` from the [GitHub](https://github.com/syncfusion/winforms-controls-localization-resx-files/blob/master/Syncfusion.Shared.Base/Syncfusion.Shared.Base.resx). ![Added default resource file of winforms sfform shown in solution explorer](Localization_images/Localization_img1.png) @@ -60,7 +60,7 @@ End Sub ![Winforms sfform localized with modified resources](Localization_images/Localization_img5.png) ## Editing Default Resource File -The default resource file can be edited by adding it to the **Resources** folder of the application, which is where SfForm reads the static texts from. The default resource file can be downloaded from the [GitHub](https://github.com/syncfusion/winforms-controls-localization-resx-files/blob/master/Syncfusion.Shared.Base/Syncfusion.Shared.Base.resx). +The default resource file can be edited by adding it to the **Resources** folder of the application, which is where WinForms Form reads the static texts from. The default resource file can be downloaded from the [GitHub](https://github.com/syncfusion/winforms-controls-localization-resx-files/blob/master/Syncfusion.Shared.Base/Syncfusion.Shared.Base.resx). ![Added default resource file of winforms sfform shown in solution explorer](Localization_images/Localization_img6.png) diff --git a/WindowsForms/Form/MDICustomization.md b/WindowsForms/Form/MDICustomization.md index cff029020..4301ed596 100644 --- a/WindowsForms/Form/MDICustomization.md +++ b/WindowsForms/Form/MDICustomization.md @@ -1,4 +1,4 @@ ---- +--- layout: post title: MDI Customization in Windows Forms Form control | Syncfusion® description: MDI Customization in Form (SfForm) supports creating MDI applications, managing child forms, customizing appearance, and handling active windows. @@ -9,7 +9,7 @@ documentation: ug # MDI Customization in Windows Forms Form (SfForm) -Multiple Document Interface (MDI) applications allow displaying multiple documents (or forms) in an application at the same time. An MDI parent is a form that contains MDI child windows, which are the sub-windows. A form can be changed to an MDI parent by enabling the [IsMDIContainer](https://learn.microsoft.com/en-us/dotnet/api/system.windows.forms.form.ismdicontainer?view=windowsdesktop-7.0&viewFallbackFrom=net-5.0) property. +Multiple Document Interface (MDI) applications allow displaying multiple documents (or forms) in an application at the same time. An MDI parent is a form that contains MDI child windows, which are the sub-windows. A WinForms Form can be changed to an MDI parent by enabling the [IsMDIContainer](https://learn.microsoft.com/en-us/dotnet/api/system.windows.forms.form.ismdicontainer?view=windowsdesktop-7.0&viewFallbackFrom=net-5.0) property. ## Adding MDI child form diff --git a/WindowsForms/Form/Overview.md b/WindowsForms/Form/Overview.md index 1cfb2ba47..7ab1ee187 100644 --- a/WindowsForms/Form/Overview.md +++ b/WindowsForms/Form/Overview.md @@ -9,11 +9,11 @@ documentation: ug # About Syncfusion® Windows Forms SfForm Control -The `SfForm` is a window control for completely customizing the appearance of a form and loading a custom user interface in the title bar. +The `WinForms Form` is a window control for completely customizing the appearance of a form and loading a custom user interface in the title bar. ## Key Features -The key features of the SfForm are as follows: +The key features of the WinForms Form are as follows: * `Title bar customization`: Customizes the appearance of the title bar and loads a user control into the title bar. @@ -24,35 +24,35 @@ The key features of the SfForm are as follows: Syncfusion® WinForms suite comes up with the following different forms: -* [SfForm](https://www.syncfusion.com/winforms-ui-controls/form) -* [MetroForm](https://www.syncfusion.com/winforms-ui-controls/metroform) -* [Office2007Form](https://www.syncfusion.com/winforms-ui-controls/office2007form) +* [WinForms Form](https://www.syncfusion.com/winforms-ui-controls/form) +* [WinForms MetroForm](https://www.syncfusion.com/winforms-ui-controls/metroform) +* [WinForms Office2007Form](https://www.syncfusion.com/winforms-ui-controls/office2007form) -### SfForm +### WinForms Form -The [SfForm](https://help.syncfusion.com/windowsforms/form/overview) window control allows you to completely customize its appearance. It supports loading a custom user interface in the title bar, adding MDI child forms, and customizing the appearance of child forms. +The [WinForms Form](https://help.syncfusion.com/windowsforms/form/overview) window control allows you to completely customize its appearance. It supports loading a custom user interface in the title bar, adding MDI child forms, and customizing the appearance of child forms. -### MetroForm +### WinForms MetroForm -[MetroForm](https://help.syncfusion.com/windowsforms/metro-form/overview) is used to create a customizable window for the end user's application. It supports various built-in skins and lets the user control its behavior and appearance. +[WinForms MetroForm](https://help.syncfusion.com/windowsforms/metro-form/overview) is used to create a customizable window for the end user's application. It supports various built-in skins and lets the user control its behavior and appearance. -### Office2007Form +### WinForms Office2007Form -[Office2007Form](https://help.syncfusion.com/windowsforms/office2007form/overview) is an advanced standard form that offers a Microsoft Office2007 like UI and appearance. It supports various built-in color schemes and customization options to control its behavior and appearance. +[WinForms Office2007Form](https://help.syncfusion.com/windowsforms/office2007form/overview) is an advanced standard form that offers a Microsoft Office2007 like UI and appearance. It supports various built-in color schemes and customization options to control its behavior and appearance. -### SfForm vs MetroForm +### WinForms Form vs WinForms MetroForm -Both SfForm and MetroForm controls are used for the same purpose. However, the SfForm control offers a rich set of features over MetroForm. For caption images and labels, use MetroForm. For custom user controls in the title bar and customizing the appearance of the form and MDI forms, use SfForm. +Both WinForms Form and WinForms MetroForm controls are used for the same purpose. However, the WinForms Form control offers a rich set of features over WinForms MetroForm. For caption images and labels, use WinForms MetroForm. For custom user controls in the title bar and customizing the appearance of the form and MDI forms, use WinForms Form. -The list of some specific API differences between SfForm and MetroForm are as follows. +The list of some specific API differences between WinForms Form and WinForms MetroForm are as follows.
-{{'**SfForm**'| markdownify }} +{{'**WinForms Form**'| markdownify }} -{{'**MetroForm**'| markdownify }} +{{'**WinForms MetroForm**'| markdownify }} {{'**Description**'| markdownify }} @@ -116,7 +116,7 @@ Displays the icon that can be aligned horizontally or vertically.
-The list of features in SfForm over MetroForm are as follows. +The list of features in WinForms Form over WinForms MetroForm are as follows. @@ -132,7 +132,7 @@ The list of features in SfForm over MetroForm are as follows. Loading UserControl to TitleBar @@ -141,7 +141,7 @@ Loads any user control in the title bar instead of text by using the {{'[TitleBa Border customization @@ -150,7 +150,7 @@ Sets the active and inactive border colors by using the {{'[Style.Border](https: Rich text formatting diff --git a/WindowsForms/Form/Themes.md b/WindowsForms/Form/Themes.md index 03d427cf1..713063a85 100644 --- a/WindowsForms/Form/Themes.md +++ b/WindowsForms/Form/Themes.md @@ -1,4 +1,4 @@ ---- +--- layout: post title: Themes in Windows Forms Form control | Syncfusion® description: Themes in Form (SfForm) provide built-in visual styles and theme management options to customize the appearance of application windows. @@ -9,7 +9,7 @@ documentation: ug # Themes in Windows Forms Form (SfForm) -[Windows Forms Form](https://www.syncfusion.com/winforms-ui-controls/form) (SfForm) offers the following six built-in themes for professional representation: +[Windows Forms Form](https://www.syncfusion.com/winforms-ui-controls/form) (WinForms Form) offers the following six built-in themes for professional representation: * Office2016Colorful * Office2016White @@ -18,14 +18,14 @@ documentation: ug * Office2019Colorful * HighContrastBlack -Themes can be applied to `SfForm` by following these steps: +Themes can be applied to `WinForms Form` by following these steps: * `Load theme assembly` * `Apply theme` ## Load theme assembly -To set a theme for `SfForm`, the following assemblies should be added as references in any application. +To set a theme for `WinForms Form`, the following assemblies should be added as references in any application.
-Loads any user control in the title bar instead of text by using the {{'[TitleBarTextControl](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.Controls.SfForm.html#Syncfusion_WinForms_Controls_SfForm_TitleBarTextControl)'| markdownify }} property. Size of the user control should be set properly to fit the control within the title bar. To learn more about loading user control to TitleBar in SfForm, refer to {{'[here](https://help.syncfusion.com/windowsforms/form/titlebar#loading-user-control-to-the-title-bar)'| markdownify }}. +Loads any user control in the title bar instead of text by using the {{'[TitleBarTextControl](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.Controls.SfForm.html#Syncfusion_WinForms_Controls_SfForm_TitleBarTextControl)'| markdownify }} property. Size of the user control should be set properly to fit the control within the title bar. To learn more about loading user control to TitleBar in WinForms Form, refer to {{'[here](https://help.syncfusion.com/windowsforms/form/titlebar#loading-user-control-to-the-title-bar)'| markdownify }}.
-Sets the active and inactive border colors by using the {{'[Style.Border](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.Controls.Styles.FormVisualStyle.html#Syncfusion_WinForms_Controls_Styles_FormVisualStyle_Border)'| markdownify}} and {{'[Style.InActiveBorder](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.Controls.Styles.FormVisualStyle.html#Syncfusion_WinForms_Controls_Styles_FormVisualStyle_InactiveBorder)'| markdownify }} properties. To learn more about border customization in SfForm, refer to {{'[here](https://help.syncfusion.com/windowsforms/form/formcustomization#form-border)'| markdownify }}. +Sets the active and inactive border colors by using the {{'[Style.Border](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.Controls.Styles.FormVisualStyle.html#Syncfusion_WinForms_Controls_Styles_FormVisualStyle_Border)'| markdownify}} and {{'[Style.InActiveBorder](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.Controls.Styles.FormVisualStyle.html#Syncfusion_WinForms_Controls_Styles_FormVisualStyle_InactiveBorder)'| markdownify }} properties. To learn more about border customization in WinForms Form, refer to {{'[here](https://help.syncfusion.com/windowsforms/form/formcustomization#form-border)'| markdownify }}.
-Displays the rich text inside the title bar by enabling the {{'[AllowRichText](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.Controls.Styles.TitleBarStyleInfo.html#Syncfusion_WinForms_Controls_Styles_TitleBarStyleInfo_AllowRichText)'| markdownify }} property. To learn more about rich text formatting in SfForm, refer to {{'[here](https://help.syncfusion.com/windowsforms/form/titlebar#rich-text-formatting)'| markdownify}}. +Displays the rich text inside the title bar by enabling the {{'[AllowRichText](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.Controls.Styles.TitleBarStyleInfo.html#Syncfusion_WinForms_Controls_Styles_TitleBarStyleInfo_AllowRichText)'| markdownify }} property. To learn more about rich text formatting in WinForms Form, refer to {{'[here](https://help.syncfusion.com/windowsforms/form/titlebar#rich-text-formatting)'| markdownify}}.
@@ -65,7 +65,7 @@ HighContrastBlack
-Before applying a theme to `SfForm`, the required theme assembly should be loaded. +Before applying a theme to `WinForms Form`, the required theme assembly should be loaded. {% tabs %} {% highlight c# %} @@ -114,7 +114,7 @@ End Class ## Apply theme -The appearance of `SfForm` can be changed using the [ThemeName](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.Controls.SfForm.html#Syncfusion_WinForms_Controls_SfForm_ThemeName) property of `SfForm`. +The appearance of `WinForms Form` can be changed using the [ThemeName](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.Controls.SfForm.html#Syncfusion_WinForms_Controls_SfForm_ThemeName) property. ### Office2016Colorful diff --git a/WindowsForms/Form/TitleBar.md b/WindowsForms/Form/TitleBar.md index 5a27a8b1f..8b9b4af2f 100644 --- a/WindowsForms/Form/TitleBar.md +++ b/WindowsForms/Form/TitleBar.md @@ -1,4 +1,4 @@ ---- +--- layout: post title: Title Bar in Windows Forms Form control | Syncfusion® description: Title Bar customization in Form (SfForm) supports styling, button customization, rich text, embedded controls, and caption image configuration. @@ -105,7 +105,7 @@ Me.MaximizeBox = False ## Rich text formatting -Rich text can be displayed inside the title bar by enabling the [Style.TitleBar.AllowRichText](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.Controls.Styles.TitleBarStyleInfo.html#Syncfusion_WinForms_Controls_Styles_TitleBarStyleInfo_AllowRichText) property and adding the proper rich text to the [Text](https://learn.microsoft.com/en-us/dotnet/api/system.windows.forms.form.text?view=windowsdesktop-7.0&viewFallbackFrom=net-5.0) property of the form. +Rich text can be displayed inside the title bar by enabling the [Style.TitleBar.AllowRichText](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.Controls.Styles.TitleBarStyleInfo.html#Syncfusion_WinForms_Controls_Styles_TitleBarStyleInfo_AllowRichText) property and adding the proper rich text to the [Text](https://learn.microsoft.com/en-us/dotnet/api/system.windows.forms.form.text?view=windowsdesktop-7.0&viewFallbackFrom=net-5.0) property of the WinForms Form. {% tabs %} {% highlight c# %} @@ -128,7 +128,7 @@ N> Adding rich text to the `Text` property will have no effect, if the `AllowRic ## Loading user control to the title bar -The [WinForms Form](https://www.syncfusion.com/winforms-ui-controls/form) (SfForm) allows you to load any user control into the title bar instead of the title bar text by using the [TitleBarTextControl](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.Controls.SfForm.html#Syncfusion_WinForms_Controls_SfForm_TitleBarTextControl) property. The size of the user control should be set properly to fit the control within the title bar. +The [WinForms Form](https://www.syncfusion.com/winforms-ui-controls/form) allows you to load any user control into the title bar instead of the title bar text by using the [TitleBarTextControl](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.Controls.SfForm.html#Syncfusion_WinForms_Controls_SfForm_TitleBarTextControl) property. The size of the user control should be set properly to fit the control within the title bar. {% tabs %} {% highlight c# %} diff --git a/WindowsForms/office2007form/Color-Schemes.md b/WindowsForms/office2007form/Color-Schemes.md index e6c8c2cc8..8290c70ea 100644 --- a/WindowsForms/office2007form/Color-Schemes.md +++ b/WindowsForms/office2007form/Color-Schemes.md @@ -1,4 +1,4 @@ ---- +--- layout: post title: Configure Color Schemes in Windows Forms Office2007Form | Syncfusion® description: Color schemes support Office-inspired themes, managed colors, Aero theme integration, and background color customization. @@ -9,7 +9,7 @@ documentation: ug # Configure Color Schemes in Windows Forms Office2007Form -Office2007Form supports following office color schemes which can be edited through the `ColorScheme` property. +WinForms Office 2007 Form supports following office color schemes which can be edited through the `ColorScheme` property. * Blue * Silver @@ -70,9 +70,9 @@ Office2007Colors.ApplyManagedColors(this, Color.DarkMagenta); ![Winforms showing colorscheme managed applied in office2007form](Color-Schemes_images/Managed.png) -## Background color for Office2007Form +## Background color for WinForms Office 2007 Form -The background color of the Office2007Form can be same, as the color scheme applied to the Form. `UseOffice2007SchemeBackColor` property has to be `true`, to make this effective. +The background color of the WinForms Office 2007 Form can be same, as the color scheme applied to the Form. `UseOffice2007SchemeBackColor` property has to be `true`, to make this effective. {% tabs %} @@ -94,9 +94,9 @@ Me.UseOffice2007SchemeBackColor = True ## Applying color schemes -Office2007Form now have the ability to apply or not to apply AeroTheme on Forms with a glassy effect. This can be done by [ApplyAeroTheme](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Office2007Form.html#Syncfusion_Windows_Forms_Office2007Form_ApplyAeroTheme) property. +WinForms Office 2007 Form now have the ability to apply or not to apply AeroTheme on Forms with a glassy effect. This can be done by [ApplyAeroTheme](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Office2007Form.html#Syncfusion_Windows_Forms_Office2007Form_ApplyAeroTheme) property. -AeroTheme support is available for Office2007Form when used in Vista machine. Earlier, ColorSchemes cannot be applied to Office2007Form when AeroTheme was enabled. Now ColorSchemes can be applied by disabling AeroTheme on Office2007Form. +AeroTheme support is available for WinForms Office 2007 Form on Vista machines. Previously, ColorSchemes could not be applied when AeroTheme was enabled. Now, ColorSchemes can be applied by disabling AeroTheme. {% tabs %} diff --git a/WindowsForms/office2007form/Customization.md b/WindowsForms/office2007form/Customization.md index 710536b4a..7d2807e57 100644 --- a/WindowsForms/office2007form/Customization.md +++ b/WindowsForms/office2007form/Customization.md @@ -1,4 +1,4 @@ ---- +--- layout: post title: Office2007Form Customization in Windows Forms | Syncfusion® description: Customization options include caption alignment, fonts, colors, help button support, RTL layouts, and rounded corners. @@ -9,7 +9,7 @@ documentation: ug # Office2007Form Customization in Windows Forms -The Form caption can be aligned to the left, right or center by using the [CaptionAlign](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Office2007Form.html#Syncfusion_Windows_Forms_Office2007Form_CaptionAlign) property. +The WinForms Office 2007 Form caption can be aligned to the left, right or center by using the [CaptionAlign](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Office2007Form.html#Syncfusion_Windows_Forms_Office2007Form_CaptionAlign) property. {% tabs %} @@ -31,7 +31,7 @@ Me.CaptionAlign = System.Windows.Forms.HorizontalAlignment.Center ## Caption font -Office2010Form's caption Font can be customized through [CaptionFont](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Office2007Form.html#Syncfusion_Windows_Forms_Office2007Form_CaptionFont) property. +WinForms Office 2007 Form's caption Font can be customized through [CaptionFont](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Office2007Form.html#Syncfusion_Windows_Forms_Office2007Form_CaptionFont) property. {% tabs %} @@ -103,7 +103,7 @@ Me. CaptionBarHeight = 50 ### Retain the caption bar height on maximized mode -By Default, the height of the caption bar will be reduced when the form is in maximized state. It can be retained same in both normal and maximized state by setting the property [Office2007Form.CaptionBarHeightMode](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Office2007Form.html#Syncfusion_Windows_Forms_Office2007Form_CaptionBarHeightMode) as `SameAlwaysOnMaximize` +By Default, the height of the caption bar will be reduced when the form is in maximized state. It can be retained same in both normal and maximized state by setting the WinForms Office 2007 Form's [CaptionBarHeightMode](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Office2007Form.html#Syncfusion_Windows_Forms_Office2007Form_CaptionBarHeightMode) property as `SameAlwaysOnMaximize` {% tabs %} @@ -149,7 +149,7 @@ Me.CaptionBarHeightMode = Syncfusion.Windows.Forms.Enums.CaptionBarHeightMode.Sa ## Right to left -Right to left support can be enabled using below properties in Office2007Form. +Right to left support can be enabled using below properties in WinForms Office 2007 Form. {% tabs %} @@ -175,7 +175,7 @@ Me.RightToLeft = System.Windows.Forms.RightToLeft.Yes ## Rounded corner -Rounded corners for `Office2007Form` can be enabled by using the [AllowRoundedCorners](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Office2007Form.html#Syncfusion_Windows_Forms_Office2007Form_AllowRoundedCorners) property. Rounded corners are not supported in OS versions lower than Windows 11. Enabling `AllowRoundedCorners` property will have no effect on those operating systems. +Rounded corners for `WinForms Office 2007 Form` can be enabled by using the [AllowRoundedCorners](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Office2007Form.html#Syncfusion_Windows_Forms_Office2007Form_AllowRoundedCorners) property. Rounded corners are not supported in OS versions lower than Windows 11. Enabling `AllowRoundedCorners` property will have no effect on those operating systems. N> When the rounded corners are enabled, the border and shadow of the Form are drawn by the operating system. diff --git a/WindowsForms/office2007form/FAQ/How-to-enable-shadow-of-the-Office2007Form.md b/WindowsForms/office2007form/FAQ/How-to-enable-shadow-of-the-Office2007Form.md index 5d66feffe..08fda7cfa 100644 --- a/WindowsForms/office2007form/FAQ/How-to-enable-shadow-of-the-Office2007Form.md +++ b/WindowsForms/office2007form/FAQ/How-to-enable-shadow-of-the-Office2007Form.md @@ -1,4 +1,4 @@ ---- +--- layout: post title: How to Enable Shadow in Windows Forms Office2007Form | Syncfusion® description: Enable or disable shadow effects in Syncfusion® Windows Forms Office2007Form using the DropShadow property, appearance settings, and more. @@ -9,7 +9,7 @@ documentation: ug # How to Enable Shadow in Windows Forms Office2007Form -Shadow of the Office2007Form can be enabled or disabled using the [DropShadow](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Office2007Form.html#Syncfusion_Windows_Forms_Office2007Form_DropShadow) property. +Shadow of the WinForms Office 2007 Form can be enabled or disabled using the [DropShadow](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Office2007Form.html#Syncfusion_Windows_Forms_Office2007Form_DropShadow) property. {% tabs %} diff --git a/WindowsForms/office2007form/Getting-Started.md b/WindowsForms/office2007form/Getting-Started.md index 339013205..b189fcc7e 100644 --- a/WindowsForms/office2007form/Getting-Started.md +++ b/WindowsForms/office2007form/Getting-Started.md @@ -9,7 +9,7 @@ documentation: ug # Getting Started with Windows Forms Office2007 Form -This section describes how to configure `Office2007Form` control in a Windows Forms application. +This section describes how to configure `WinForms Office 2007 Form` control in a Windows Forms application. ## Assembly deployment @@ -19,20 +19,20 @@ Please find more details regarding how to install the nuget packages in windows [How to install nuget packages](https://help.syncfusion.com/windowsforms/installation/install-nuget-packages) -## Creating simple application with Office2007Form +## Creating simple application with WinForms Office 2007 Form -You can create the Windows Forms application with Office2007Form control as follows: +You can create the Windows Forms application with WinForms Office 2007 Form control as follows: 1. [Creating the project](#creating-the-project) -2. [Configure Office2007Form](#configure-office2007form) +2. [Configure WinForms Office 2007 Form](#configure-office2007form) ### Creating the project -Create a new Windows Forms project in the Visual Studio to change the standard form into Office2007Form. +Create a new Windows Forms project in the Visual Studio to change the standard form into WinForms Office 2007 Form. -### Configure Office2007Form +### Configure WinForms Office 2007 Form -`Office2007Form` is an advanced standard Form, we can configure it by following the given steps: +`WinForms Office 2007 Form` is an advanced standard Form, we can configure it by following the given steps: **Step 1:** Add the following required assembly references to the project: @@ -56,7 +56,7 @@ Imports Syncfusion.Windows.Forms {% endtabs %} -**Step 3:** Change the class to inherit `Office2007Form` instead of the standard form. +**Step 3:** Change the class to inherit `Office2007Form (WinForms Office 2007 Form)` instead of the standard form. {% tabs %} diff --git a/WindowsForms/office2007form/Overview.md b/WindowsForms/office2007form/Overview.md index f5df8c094..152e8d564 100644 --- a/WindowsForms/office2007form/Overview.md +++ b/WindowsForms/office2007form/Overview.md @@ -9,7 +9,7 @@ documentation: ug # About Syncfusion® Windows Forms Office2007 Form Control -The `Office2007Form` is an advanced standard Form that offers Microsoft Office2007 like UI and appearance. It allows the end-user to create Microsoft Office2007 like appealing User Interface in their application. It also supports various built-in Color Schemes and customization options that helps user to control its behavior and appearance. +The `WinForms Office 2007 Form` is an advanced standard Form that offers Microsoft Office2007 like UI and appearance. It allows the end-user to create Microsoft Office2007 like appealing User Interface in their application. It also supports various built-in Color Schemes and customization options that helps user to control its behavior and appearance. ![Microsoft Office2007 inspired form for Windows Forms](Office2007-Form_images/Office2007Form.png) diff --git a/WindowsForms/office2010form/Color-Schemes.md b/WindowsForms/office2010form/Color-Schemes.md index 542295093..a7db1d9a4 100644 --- a/WindowsForms/office2010form/Color-Schemes.md +++ b/WindowsForms/office2010form/Color-Schemes.md @@ -1,4 +1,4 @@ ---- +--- layout: post title: Configure Color Schemes in Windows Forms Office2010Form | Syncfusion® description: Color schemes support Office-inspired themes, managed colors, Aero theme integration, and background color customization. @@ -9,7 +9,7 @@ documentation: ug # Configure Color Schemes in Windows Forms Office2010Form -Office2010Form supports following office color schemes which can be edited through `ColorScheme` property. +WinForms Office 2010 Form supports following office color schemes which can be edited through `ColorScheme` property. * Blue * Silver @@ -68,7 +68,7 @@ Office2010Colors.ApplyManagedColors(this, Color.DarkMagenta); ## Background color for Office2010 Form -The background of the Office2010 Form can be same, as the color scheme applied to the form. `UseOffice2007SchemeBackColor` property has to `true`, to make this effective. +The background of the WinForms Office 2010 Form can be same, as the color scheme applied to the form. `UseOffice2007SchemeBackColor` property has to `true`, to make this effective. {% tabs %} @@ -91,9 +91,9 @@ Me.UseOffice2010SchemeBackColor = True ## Applying color schemes -Office2010Form now have the option to apply the Aero theme on forms, which provides a glassy effect. This can be done through the [ApplyAeroTheme](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Office2010Form.html#Syncfusion_Windows_Forms_Office2010Form_ApplyAeroTheme) property. +WinForms Office 2010 Form now have the option to apply the Aero theme on forms, which provides a glassy effect. This can be done through the [ApplyAeroTheme](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Office2010Form.html#Syncfusion_Windows_Forms_Office2010Form_ApplyAeroTheme) property. -Aero theme support is available for Office2010Form when used on Windows Vista machines. Previously, ColorSchemes could not be applied to the Office2010Form when the Aero theme was enabled. Now, ColorSchemes can be applied by disabling the Aero theme on Office2010Form. +Aero theme support is available for WinForms Office 2010 Form on Windows Vista machines. Previously, ColorSchemes could not be applied when the Aero theme was enabled. Now, ColorSchemes can be applied by disabling the Aero theme. {% tabs %} diff --git a/WindowsForms/office2010form/Customization.md b/WindowsForms/office2010form/Customization.md index 73f93adae..f4e420102 100644 --- a/WindowsForms/office2010form/Customization.md +++ b/WindowsForms/office2010form/Customization.md @@ -1,4 +1,4 @@ ---- +--- layout: post title: Office2010Form Customization in Windows Forms | Syncfusion® description: Customization options include caption alignment, fonts, colors, help button support, RTL layouts, and rounded corners. @@ -9,7 +9,7 @@ documentation: ug # Caption alignment in WinForms Office2010Form -The Form caption can be aligned to the left, right or center by using the [CaptionAlign](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Office2010Form.html#Syncfusion_Windows_Forms_Office2010Form_CaptionAlign) property. +The WinForms Office 2010 Form caption can be aligned to the left, right or center by using the [CaptionAlign](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Office2010Form.html#Syncfusion_Windows_Forms_Office2010Form_CaptionAlign) property. {% tabs %} @@ -31,7 +31,7 @@ Me.CaptionAlign = System.Windows.Forms.HorizontalAlignment.Center ## Caption font -Office2010Form's caption Font can be customized through [CaptionFont](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Office2010Form.html#Syncfusion_Windows_Forms_Office2010Form_CaptionFont) property. +WinForms Office 2010 Form's caption Font can be customized through [CaptionFont](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Office2010Form.html#Syncfusion_Windows_Forms_Office2010Form_CaptionFont) property. {% tabs %} @@ -130,7 +130,7 @@ Me. CaptionBarHeight = 50 ## Right to left -Right to left support can be enabled using below properties in Office2010Form. +Right to left support can be enabled using below properties in WinForms Office 2010 Form. {% tabs %} @@ -156,9 +156,9 @@ Me.RightToLeft = System.Windows.Forms.RightToLeft.Yes ## Rounded corner -Rounded corners for `Office2010Form` can be enabled by using the [AllowRoundedCorners](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Office2010Form.html#Syncfusion_Windows_Forms_Office2010Form_AllowRoundedCorners) property. Rounded corners are not supported in OS versions lower than Windows 11. Enabling `AllowRoundedCorners` property will have no effect on those operating systems. +Rounded corners for `WinForms Office 2010 Form` can be enabled by using the [AllowRoundedCorners](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Office2010Form.html#Syncfusion_Windows_Forms_Office2010Form_AllowRoundedCorners) property. Rounded corners are not supported in OS versions lower than Windows 11. Enabling `AllowRoundedCorners` property will have no effect on those operating systems. -N> When the rounded corners are enabled, the border and shadow of the Form are drawn by the operating system. +N> When the rounded corners are enabled, the border and shadow of the WinForms Office 2010 Form are drawn by the operating system. {% tabs %} diff --git a/WindowsForms/office2010form/FAQ/How-to-enable-shadow-of-the-Office2010Form.md b/WindowsForms/office2010form/FAQ/How-to-enable-shadow-of-the-Office2010Form.md index d648c7395..a8a9877f1 100644 --- a/WindowsForms/office2010form/FAQ/How-to-enable-shadow-of-the-Office2010Form.md +++ b/WindowsForms/office2010form/FAQ/How-to-enable-shadow-of-the-Office2010Form.md @@ -1,4 +1,4 @@ ---- +--- layout: post title: How to Enable Shadow in Windows Forms Office2010Form | Syncfusion® description: Enable or disable shadow effects in Syncfusion® Windows Forms Office2010Form using the DropShadow property, appearance settings, and more. @@ -9,7 +9,7 @@ documentation: ug # How to Enable Shadow in Windows Forms Office2010Form -Shadow of the Office2010Form can be enabled or disabled using the [DropShadow](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Office2010Form.html#Syncfusion_Windows_Forms_Office2010Form_DropShadow) property. +Shadow of the WinForms Office 2010 Form can be enabled or disabled using the [DropShadow](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Office2010Form.html#Syncfusion_Windows_Forms_Office2010Form_DropShadow) property. {% tabs %} diff --git a/WindowsForms/office2010form/Getting-Started.md b/WindowsForms/office2010form/Getting-Started.md index e2bc7cbea..7daec3e51 100644 --- a/WindowsForms/office2010form/Getting-Started.md +++ b/WindowsForms/office2010form/Getting-Started.md @@ -9,7 +9,7 @@ documentation: ug # Getting Started with Windows Forms Office2010 Form -This section describes how to configure `Office2010Form` control in a Windows Forms application. +This section describes how to configure `WinForms Office 2010 Form` control in a Windows Forms application. ## Assembly deployment @@ -19,20 +19,20 @@ Please find more details regarding how to install the nuget packages in windows [How to install nuget packages](https://help.syncfusion.com/windowsforms/installation/install-nuget-packages) -## Creating simple application with Office2010Form +## Creating simple application with WinForms Office 2010 Form -You can create the Windows Forms application with Office2010Form control as follows: +You can create the Windows Forms application with WinForms Office 2010 Form control as follows: 1. [Creating project](#creating-the-project) -2. [Configure Office2010Form](#configure-office2010form) +2. [Configure WinForms Office 2010 Form](#configure-office2010form) ### Creating the project -Create a new Windows Forms project in the Visual Studio to change the standard form into Office2010Form. +Create a new Windows Forms project in the Visual Studio to change the standard form into WinForms Office 2010 Form. -### Configure Office2010Form +### Configure WinForms Office 2010 Form -`Office2010Form` is an advanced standard Form, we can configure it by following the given steps: +`WinForms Office 2010 Form` is an advanced standard Form, we can configure it by following the given steps: **Step 1:** Add the following required assembly references to the project: @@ -56,7 +56,7 @@ Imports Syncfusion.Windows.Forms {% endtabs %} -**Step 3:** Change the class to inherit `Office2010Form` instead of the standard form. +**Step 3:** Change the class to inherit `Office2010Form (WinForms Office 2010 Form)` instead of the standard form. {% tabs %} diff --git a/WindowsForms/office2010form/Overview.md b/WindowsForms/office2010form/Overview.md index 208d0f5aa..1895837ec 100644 --- a/WindowsForms/office2010form/Overview.md +++ b/WindowsForms/office2010form/Overview.md @@ -9,7 +9,7 @@ documentation: ug # About Syncfusion® Windows Forms Office2010 Form Control -The `Office2010Form` is an advanced standard Form that offers Microsoft Office2010 like UI and appearance. It allows the end-user to create Microsoft Office2010 like appealing User Interface in their application. It also supports various built-in Color Schemes and customization options that helps user to control its behavior and appearance. +The `WinForms Office 2010 Form` is an advanced standard Form that offers Microsoft Office2010 like UI and appearance. It allows the end-user to create Microsoft Office2010 like appealing User Interface in their application. It also supports various built-in Color Schemes and customization options that helps user to control its behavior and appearance. ![Microsoft Office2010 inspired form for Windows Forms](GettingStarted_images/Office2010Form.png)