Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion WindowsForms/Classic/Button/Getting-Started.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
layout: post
title: Getting Started with Windows Forms ButtonAdv (Classic) | Syncfusion®
title: Getting Started with Windows Forms ButtonAdv | Syncfusion®
description: Learn how to get started with the Syncfusion® Windows Forms ButtonAdv(Classic) control. Explore setup, features, examples, and customization options.
platform: WindowsForms
control: ButtonAdv
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
---
layout: post
title: Shadow-of-the-MetroForm | WindowsForms | Syncfusion
description: shadow of the metroform
title: How to Enable Shadow in Windows Forms MetroForm | Syncfusion®
description: Enable or disable shadow effects in Syncfusion® Windows Forms MetroForm using the DropShadow property, appearance settings, and more.
platform: WindowsForms
control: MetroForm
documentation: ug
---

# How to enable shadow of the MetroForm?
# How to Enable Shadow in Windows Forms MetroForm

Shadow of the MetroForm can be enabled or disabled using the `DropShadow` property.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
---
---
layout: post
title: DrawerPanel visibiliy | WindowsForms | Syncfusion
description: how to find whether the drawerpanel is showing or not?
title: How to Check DrawerPanel Visibility in Windows Forms NavigationDrawer
description: Check whether the DrawerPanel is visible in Syncfusion® Windows Forms Navigation Drawer control using the IsDrawerShowing method and more.
platform: WindowsForms
control: Frequently Asked Questions
documentation: ug
---

# How to find whether the DrawerPanel is showing or not?

# How to Check DrawerPanel Visibility in WinForms NavigationDrawer
This requirement is achieved by using its function named [IsDrawerShowing](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.NavigationDrawer.html#Syncfusion_Windows_Forms_Tools_NavigationDrawer_IsDrawerShowing).

{% tabs %}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
---
layout: post
title: Restrict transition | WindowsForms | Syncfusion
description: how to restrict slideontop collapse transition for left position?
title: How to Restrict SlideOnTop Collapse in Windows Forms NavigationDrawer
description: Restrict the SlideOnTop collapse transition in Syncfusion® Windows Forms Navigation Drawer control for the left position using events and more.
platform: WindowsForms
control: Frequently Asked Questions
documentation: ug
---

# How to restrict SlideOnTop collapse transition for left position?
# How to Restrict SlideOnTop Collapse in WinForms NavigationDrawer

This requirement can be achieved by handling the Closing Event.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
---
layout: post
title: Restrict transition for left position | WindowsForms | Syncfusion
description: how to restrict slideontop expand transition for left position?
title: How to Restrict SlideOnTop Expand in WinForms NavigationDrawer
description: Restrict the SlideOnTop expand transition in Syncfusion® Windows Forms Navigation Drawer control for the left position using events and more.
platform: WindowsForms
control: Frequently Asked Questions
documentation: ug
---

# How to restrict SlideOnTop expand transition for left position?
# How to Restrict SlideOnTop Expand in WinForms NavigationDrawer

This requirement can be achieved by handling the Opening event.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
---
layout: post
title: GroupBarItem image in Windows Forms Navigation Pane | Syncfusion
description: Learn about How do I paint the GroupBarItem image without scaling the image support in Syncfusion Windows Forms Navigation Pane control and more details.
title: How to Paint a GroupBarItem Image in Windows Forms GroupBar
description: Paint a GroupBarItem image without scaling in Syncfusion® Windows Forms GroupBar control by overriding image rendering methods and more.
platform: WindowsForms
control: GroupBar
documentation: ug
---

# GroupBarItem image in Windows Forms Navigation Pane
# How to Paint a GroupBarItem Image in Windows Forms GroupBar

This page explains GroupBarItem image in Windows Forms Navigation Pane and more details.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
---
---
layout: post
title: How to apply gradient rendering | WindowsForms | Syncfusion
description: Frequently asked questions
title: How to Apply Gradient Rendering in Windows Forms GroupBar
description: Apply gradient rendering in Syncfusion® Windows Forms GroupBar control using custom brush settings, rendering events, and more.
platform: WindowsForms
control: GroupBar
documentation: ug
---
# How to apply Gradient Rendering for the GroupBar?
# How to Apply Gradient Rendering in Windows Forms GroupBar

The correct way to apply gradient rendering for the GroupBar is to handle the [ProvideGroupBarItemBrush](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.GroupBar.html) Event of GroupBar.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
---
---
layout: post
title: GroupBar's Tag property | WindowsForms | Syncfusion
description: Frequently asked questions
title: How to Assign the Selected Item to Tag in Windows Forms GroupBar
description: Assign the selected GroupBar item to the Tag property in Syncfusion® Windows Forms GroupBar control using selection events and more.
platform: WindowsForms
control: GroupBar
documentation: ug
---
# How to assign the currently selected GroupBar Item to the GroupBar's Tag property?
# How to Assign the Selected Item to Tag in Windows Forms GroupBar

You could do so by handling the GroupBar’s [GroupBarItemSelected](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.GroupBar.html) event. Within this event handler, index into the GroupBar Items Collection using the GroupBar's [SelectedItem](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.GroupBar.html#Syncfusion_Windows_Forms_Tools_GroupBar_SelectedItem) property value, to get the currently selected GroupBar Item, and then assign it to the GroupBar’s [Tag](http://msdn.microsoft.com/query/dev14.query?appId=Dev14IDEF1&l=EN-US&k=k(System.Windows.Forms.Control.Tag)&rd=true) property.
You could do so by handling the GroupBar’s [GroupBarItemSelected](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.GroupBar.html) event. Within this event handler, index into the GroupBar Items Collection using the GroupBar's [SelectedItem](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.GroupBar.html#Syncfusion_Windows_Forms_Tools_GroupBar_SelectedItem) property value, to get the currently selected GroupBar Item, and then assign it to the GroupBar’s [Tag](https://learn.microsoft.com/en-us/dotnet/api/system.windows.forms.control.tag?view=windowsdesktop-10.0) property.

{% tabs %}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
---
---
layout: post
title: How to change the Hheader backColor | WindowsForms | Syncfusion
description: Frequently Asked Questions
title: How to Change Header BackColor in Windows Forms GroupBar | Syncfusion®
description: Change the header BackColor in Syncfusion® Windows Forms GroupBar control when using Office 2003 visual style, stacked mode, and more.
platform: WindowsForms
control: GroupBar
documentation: ug
---
# How to change the Header BackColor of a Stacked GroupBar when it is in Office 2003 Visual Style?
# How to Change Header BackColor in Windows Forms GroupBar

The following code examples are used to change the GroupBar Item's Header BackColor.
The following code examples demonstrate how to change the header background color of a stacked GroupBar item when the Office2003 visual style is applied.

{% tabs %}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
---
---
layout: post
title: How to customize the Splitter color | WindowsForms | Syncfusion
description: Frequently Asked Questions
title: How to Customize Splitter Color in Windows Forms GroupBar
description: Customize the splitter color in Syncfusion® Windows Forms GroupBar control using appearance settings, color customization options, and more.
platform: WindowsForms
control: GroupBar
documentation: ug
---
# How to customize the Splitter color in the GroupBar?
# How to Customize Splitter Color in Windows Forms GroupBar

## Appearance settings

Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
---
---
layout: post
title: Embed any control inside the GroupBar | WindowsForms | Syncfusion
description: Frequently Asked Questions
title: How to Embed Controls Using Templates in Windows Forms GroupBar
description: Embed controls dynamically in Syncfusion® Windows Forms GroupBar control using templates, custom content, and control integration features.
platform: WindowsForms
control: GroupBar
documentation: ug
---
# How to dynamically embed any control via Templates inside the GroupBar?
# How to Embed Controls Using Templates in Windows Forms GroupBar

The following code snippet shows how to dynamically add a Label control to the Groupbar Item using Templates.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
---
---
layout: post
title: Space between text and Icon | WindowsForms | Syncfusion
description: Frequently Asked Questions
title: How to Add Space Between Text and Icons in Windows Forms GroupBar
description: Add spacing between text and icons in Syncfusion® Windows Forms GroupBar control using the GroupBarItem padding settings and more.
platform: WindowsForms
control: GroupBar
documentation: ug
---
# How to give the space between text and Icon in the GroupBarItem?
# How to Add Space Between Text and Icons in Windows Forms GroupBar

The [Padding](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.GroupBarItem.html#Syncfusion_Windows_Forms_Tools_GroupBarItem_Padding) property of GroupBarItem provides spacing between Icons and text in the GroupBarItems.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
---
---
layout: post
title: Save and restore the state information | WindowsForms | Syncfusion
description: Frequently Asked Questions
title: How to Save and Restore State Information in Windows Forms GroupBar
description: Save and restore state information in Syncfusion® Windows Forms GroupBar control using AppStateSerializer methods and more.
platform: WindowsForms
control: GroupBar
documentation: ug
---
# How to save and restore the state information of a Stacked Mode GroupBar?
# How to Save and Restore State Information in Windows Forms GroupBar

You could save and restore the State information of the GroupBar Items in a Stacked Mode GroupBar by using the
[AppStateSerializer's](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Runtime.Serialization.AppStateSerializer.html) [SerializeObject](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Runtime.Serialization.AppStateSerializer.html#Syncfusion_Runtime_Serialization_AppStateSerializer_SerializeObject_System_String_System_Object_) and [DeserializeObject](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Runtime.Serialization.AppStateSerializer.html#Syncfusion_Runtime_Serialization_AppStateSerializer_DeserializeObject_System_String_) methods.
8 changes: 4 additions & 4 deletions WindowsForms/Popup/How-to-Create-a-Transparent-Pop-up.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
---
layout: post
title: Create a Transparent Pop-up | Windows Forms | Syncfusion®
description: Learn here all about how to Create a Transparent Pop-up of Syncfusion® Windows Forms PopupControlContainer and more.
title: How to Create a Transparent Popup in Windows Forms Popup | Syncfusion®
description: Create a transparent popup in Syncfusion® Windows Forms PopupControlContainer control by configuring popup host opacity settings and more.
platform: windowsforms
control: PopupControlContainer
documentation: ug
---

# How to Create a Transparent Pop-up in Windows Forms
# How to Create a Transparent Popup in Windows Forms Popup

Transparent Pop-up is nothing but the visual appearance set based on the user requirements. This can be explain in the below code snippet,

Expand Down
8 changes: 4 additions & 4 deletions WindowsForms/Popup/How-to-Get-Around-this-Behavior.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
---
layout: post
title: Get Around this Behavior in WinForms PopupControlContainer |Syncfusion®
description: Learn here all about how to Get Around this Behavior of Syncfusion® Windows Forms PopupControlContainer and more.
title: How to Handle Popup Close Behavior in Windows Forms Popup
description: Handle popup close behavior in Syncfusion® Windows Forms PopupControlContainer control using events, Boolean flags, and more.
platform: windowsforms
control: PopupControlContainer
documentation: ug
---

# How to Get Around this Behavior in Windows Forms PopupControlContainer
# How to Handle Popup Close Behavior in Windows Forms Popup

In order to work around this behavior, you can set a Boolean flag and cancel the [`BeforeCloseUp`](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.PopupControlContainer.html#Syncfusion_Windows_Forms_PopupControlContainer_BeforeCloseUp) event as shown below.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
---
layout: post
title: Identify whether the Pop-up is Currently Dropped Down | Syncfusion®
description: Learn here all about how to Identify whether the Pop-up is Currently Dropped Down of Syncfusion® Windows Forms PopupControlContainer control and more.
title: How to Check Popup Drop-Down State in Windows Forms Popup
description: Check whether a popup is currently dropped down in Syncfusion® Windows Forms PopupControlContainer control using the IsShowing method and more.
platform: windowsforms
control: PopupControlContainer
documentation: ug
---

# How to Identify whether the Pop-up is Currently Dropped Down
# How to Check Popup Drop-Down State in Windows Forms Popup

The boolean method [IsShowing](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.PopupControlContainer.html#Syncfusion_Windows_Forms_PopupControlContainer_IsShowing) of PopupControlContainer returns whether the popup is currently dropped down or not.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
---
---
layout: post
title: Show Pop-up for a RichTextBox Control | Windows Forms | Syncfusion®
description: Learn here all about how to Show PopupControlContainer as the Pop-up for a RichTextBox Control of Syncfusion® Windows Forms PopupControlContainer and more.
title: How to Show a Popup for Windows Forms RichTextBox
description: Show PopupControlContainer as a popup for a Syncfusion® Windows Forms RichTextBox control, its integration steps, configuration options, and more.
platform: windowsforms
control: PopupControlContainer
documentation: ug
---

# How to Show PopupControlContainer as Pop-up for a RichTextBox Control
# How to Show a Popup for Windows Forms RichTextBox

Please refer [`Getting Started`](https://help.syncfusion.com/windowsforms/popupcontrolcontainer/getting-started) section for PopupControlContainer as the Pop-up for a RichTextBox Control.
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
---
layout: post
title: How to display the AutoComplete popup programmatically, when a textbox is enabled with AutoComplete feature | WindowsForms | Syncfusion
description: How to display the AutoComplete popup programmatically, when a textbox is enabled with AutoComplete feature
title: How to Programmatically Display an AutoComplete Popup in Windows Forms
description: Display the AutoComplete popup programmatically in Syncfusion® Windows Forms AutoComplete control using built-in popup APIs and more.
platform: WindowsForms
control: Tools
documentation: ug
---

# How to display the AutoComplete popup programmatically, when a textbox is enabled with AutoComplete feature?
# How to Programmatically Display an AutoComplete Popup in Windows Forms

[AutoComplete popup](https://help.syncfusion.com/windowsforms/autocomplete/autocomplete-popup) can be displayed programmatically.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
---
layout: post
title: How to add a new data row to the Data table at runtime | WindowsForms | Syncfusion
description: How to add a new data row to the Data table at runtime
title: How to Add a New Data Row at Runtime in Windows Forms AutoComplete
description: Add new data rows at runtime in Syncfusion® Windows Forms AutoComplete control by updating the data source and internal table data.
platform: WindowsForms
control: Tools
documentation: ug
---


# How to add a new data row to the Data table at runtime?
# How to Add a New Data Row at Runtime in Windows Forms AutoComplete

This method sets internal table data based on AutoComplete.DataSource property. You can do this by calling the SetTableData() method as follows.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
---
layout: post
title: How to delete the history items persisted by AutoComplete | WindowsForms | Syncfusion
description: How to delete the history items persisted by AutoComplete
title: How to Delete History Items in Windows Forms AutoComplete
description: Delete persisted history items in Syncfusion® Windows Forms AutoComplete control using the ResetHistory method and manage stored entries.
platform: WindowsForms
control: Tools
documentation: ug
---



# How to delete the history items persisted by AutoComplete?
# How to Delete History Items in Windows Forms AutoComplete

You can delete the history items persisted by the AutoComplete control by calling the AutoComplete.ResetHistory() method.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
---
layout: post
title: How to delete the items in the list at runtime | WindowsForms | Syncfusion
description: How to delete the items in the list at runtime
title: How to Delete List Items at Runtime in Windows Forms AutoComplete
description: Delete list items at runtime in Syncfusion® Windows Forms AutoComplete control using the AllowListDelete property and keyboard actions.
platform: WindowsForms
control: Tools
documentation: ug
---



# How to delete the items in the list at runtime?
# How to Delete List Items at Runtime in Windows Forms AutoComplete

You can delete items in the list at runtime by enabling the AllowListDelete property and then pressing the Delete key.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
---
layout: post
title: How to implement AutoComplete with RichTextBox control | WindowsForms | Syncfusion
description: How to implement AutoComplete with RichTextBox control
title: How to Implement AutoComplete with Windows Forms RichTextBox
description: Implement AutoComplete with a Syncfusion® Windows Forms RichTextBox control using custom edit controls, data sources, and suggestions.
platform: WindowsForms
control: Editors Package
documentation: ug
Expand All @@ -10,7 +10,7 @@ documentation: ug



# How to implement AutoComplete with RichTextBox control?
# How to Implement AutoComplete with Windows Forms RichTextBox

Follow the given steps to implement AutoComplete feature with RichTextBox control.

Expand Down
Loading