diff --git a/WindowsForms-toc.html b/WindowsForms-toc.html
index 07b3b7aed..95c6d3a4b 100644
--- a/WindowsForms-toc.html
+++ b/WindowsForms-toc.html
@@ -4250,6 +4250,9 @@
Events
+
+ Customization
+
@@ -6137,7 +6140,7 @@
Release Notes
- - 2026 Volume 1 - v33.*
+ - 2026 Volume 1 - v33.*
- 2025 Volume 4 - v32.*
- 2025 Volume 3 - v31.*
diff --git a/WindowsForms/AI-AssistView/Customization.md b/WindowsForms/AI-AssistView/Customization.md
new file mode 100644
index 000000000..3f9abdd7a
--- /dev/null
+++ b/WindowsForms/AI-AssistView/Customization.md
@@ -0,0 +1,252 @@
+---
+layout: post
+title: Customization in Windows Forms AI AssistView control | Syncfusion
+description: Learn about customizing the BannerView and creating custom BotView and UserView in the Syncfusion AI AssistView control here.
+platform: windowsforms
+control: SfAIAssistView
+documentation: ug
+---
+
+# Customization in AIAssistView
+
+This section explains how to customize the BannerView, and how to create a custom BotView and UserView for the Windows Forms [SfAIAssistView](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.AIAssistView.SfAIAssistView.html) control
+
+## Customizing BannerView
+
+You can customize the BannerView and apply it to the AssistView by using the [SetBannerView](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.AIAssistView.SfAIAssistView.html#Syncfusion_WinForms_AIAssistView_SfAIAssistView_SetBannerView_System_String_System_String_System_Drawing_Image_Syncfusion_WinForms_AIAssistView_BannerStyle_) method.
+
+The following example demonstrates how to customize the Title string, TitleFont, Subtitle string, SubtitleFont, ImageSize, SubtitleColor, and TitleColor of an AssistView banner.
+
+{% tabs %}
+
+{% highlight c# %}
+
+public partial class Form1 : Form
+{
+ ViewModel viewModel;
+ private SfAIAssistView sfAIAssistView1;
+ public Form1()
+ {
+ InitializeComponent();
+ viewModel = new ViewModel();
+
+ sfAIAssistView1 = new SfAIAssistView();
+ sfAIAssistView1.Location = new System.Drawing.Point(41, 40);
+ sfAIAssistView1.Size = new System.Drawing.Size(818, 457);
+ sfAIAssistView1.Dock = DockStyle.Fill;
+ this.Controls.Add(sfAIAssistView1);
+
+ sfAIAssistView1.DataBindings.Add("Messages", viewModel, "Chats", true, DataSourceUpdateMode.OnPropertyChanged);
+ sfAIAssistView1.DataBindings.Add("ShowTypingIndicator", viewModel, "ShowTypingIndicator", true, DataSourceUpdateMode.OnPropertyChanged);
+ sfAIAssistView1.DataBindings.Add("Suggestions", viewModel, "Suggestion", true, DataSourceUpdateMode.OnPropertyChanged);
+ viewModel.CurrentUser = sfAIAssistView1.User;
+
+ BannerTemplate();
+
+ sfAIAssistView1.TypingIndicator.Author = new Author() { Name = "Bot", AvatarImage = Image.FromFile(@"Asset\AI_Assist.png") };
+ sfAIAssistView1.TypingIndicator.DisplayText = "Typing";
+ }
+
+ private void BannerTemplate()
+ {
+
+ BannerStyle customStyle = new BannerStyle
+ {
+ TitleFont = new Font("Segoe UI", 14F, System.Drawing.FontStyle.Bold),
+ SubTitleFont = new Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic),
+ ImageSize = AvatarSize.Medium,
+ SubTitleColor = Color.Red,
+ TitleColor = Color.Green,
+ };
+
+ string title = "AI Assist ";
+ string subTitle = "Your best AI Companion";
+ sfAIAssistView1.SetBannerView(title, subTitle, Image.FromFile(@"Asset\AI_Assist.png"), customStyle);
+ }
+}
+
+{% endhighlight %}
+
+{% endtabs %}
+
+
+
+## Creating a Custom BotView
+
+You can create and set a custom BotView and apply it to the AssistView by using the [SetBotView](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.AIAssistView.SfAIAssistView.html#Syncfusion_WinForms_AIAssistView_SfAIAssistView_SetBotView_System_Object_System_Windows_Forms_Control_) method.
+
+The following example demonstrates how to create and set a custom BotView in the AssistView.
+
+{% tabs %}
+
+{% highlight c# %}
+
+public partial class Form1 : Form
+{
+ public Form1()
+ {
+ viewModel.Chats.CollectionChanged += Chats_CollectionChanged;
+
+ // To Apply custom views to any existing default messages
+ foreach (var item in viewModel.Chats)
+ {
+ if (item is TextMessage tm)
+ {
+ sfAIAssistView1.SetBotView(tm, CreateBotView(tm));
+ }
+ }
+ }
+
+
+
+ private void Chats_CollectionChanged(object sender, NotifyCollectionChangedEventArgs e)
+ {
+ if (e.Action != NotifyCollectionChangedAction.Add) return;
+
+ foreach (var newItem in e.NewItems ?? new object[0])
+ {
+ if (newItem is TextMessage message)
+ {
+ sfAIAssistView1.SetBotView(message, CreateBotView(message));
+ }
+ }
+ }
+
+ private Control CreateBotView(TextMessage message)
+ {
+ string text = string.IsNullOrEmpty(message?.Text) ? "Hello from the bot." : message.Text;
+
+ var container = new FlowLayoutPanel
+ {
+ AutoSize = true,
+
+ WrapContents = true,
+ Padding = new Padding(6),
+ BackColor = Color.Transparent
+ };
+
+ var lbl = new Label
+ {
+ Text = text,
+ AutoSize = true,
+ BackColor = Color.FromArgb(230, 240, 255),
+ ForeColor = Color.FromArgb(24, 24, 24),
+ Padding = new Padding(8),
+ Margin = new Padding(0, 0, 0, 6)
+ };
+
+ container.Controls.Add(lbl);
+
+ // Only show buttons for the initial prompt message
+ const string prompt = "I am an AI assistant. Please choose from the options below";
+ if (string.Equals(text?.Trim(), prompt, StringComparison.OrdinalIgnoreCase))
+ {
+ var btnRow = new FlowLayoutPanel
+ {
+ AutoSize = true,
+ WrapContents = true,
+ Margin = new Padding(0)
+ };
+
+ string[] choices = new[] { "What is WinForms?", "What is AI?" };
+ foreach (var c in choices)
+ {
+ var btn = new Button
+ {
+ Text = c,
+ AutoSize = true,
+ Tag = c,
+ BackColor = Color.WhiteSmoke,
+ Margin = new Padding(0, 0, 6, 0)
+ };
+
+ btn.Click += (s, e) =>
+ {
+ try
+ {
+ var choice = (string)((Button)s).Tag;
+ viewModel?.Chats.Add(new TextMessage
+ {
+ Author = viewModel.CurrentUser,
+ Text = choice
+ });
+ }
+ catch { }
+ };
+
+ btnRow.Controls.Add(btn);
+ }
+
+ container.Controls.Add(btnRow);
+ }
+
+ return container;
+ }
+}
+
+{% endhighlight %}
+
+{% endtabs %}
+
+
+
+## Creating a Custom UserView
+
+You can create and set a custom UserView and apply it to the AssistView by calling the [SetUserView](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.AIAssistView.SfAIAssistView.html#Syncfusion_WinForms_AIAssistView_SfAIAssistView_SetUserView_System_Object_System_Windows_Forms_Control_) method.
+
+The following example demonstrates how to create and set a custom UserView in AssistView.
+
+{% tabs %}
+
+{% highlight c# %}
+
+public partial class Form1 : Form
+{
+ public Form1()
+ {
+ InitializeComponent();
+
+ viewModel.Chats.CollectionChanged += Chats_CollectionChanged;
+
+ }
+
+ private void Chats_CollectionChanged(object sender, NotifyCollectionChangedEventArgs e)
+ {
+ if (e.Action != NotifyCollectionChangedAction.Add) return;
+
+ foreach (var newItem in e.NewItems ?? new object[0])
+ {
+ if (newItem is TextMessage message)
+ {
+ sfAIAssistView1.SetUserView(message, CreateUserView(message));
+ }
+ }
+ }
+ private Control CreateUserView(TextMessage message)
+ {
+ string content = message?.Text ?? string.Empty;
+
+ var lbl = new Label
+ {
+ Text = content,
+ AutoSize = true,
+ MaximumSize = new System.Drawing.Size(520, 0),
+ BackColor = Color.LightGoldenrodYellow,
+ ForeColor = Color.Blue,
+ Padding = new Padding(5),
+ Margin = new Padding(0, 0, 0, 6)
+ };
+
+ return lbl;
+ }
+}
+
+{% endhighlight %}
+
+{% endtabs %}
+
+
+
+
+
+N> You can also explore our [sample](https://github.com/SyncfusionExamples/How-to-Customize-BannerView-and-Create-a-Custom-BotView-and-UserView-in-AIAssistView) on GitHub, which demonstrates complete customization of the BannerView, the creation of a custom BotView, and a custom UserView within an AssistView.
diff --git a/WindowsForms/AI-AssistView/Events.md b/WindowsForms/AI-AssistView/Events.md
index 93bd895ca..43d2d806c 100644
--- a/WindowsForms/AI-AssistView/Events.md
+++ b/WindowsForms/AI-AssistView/Events.md
@@ -1,6 +1,6 @@
---
layout: post
-title: Windows Forms AI AssistView control | Syncfusion
+title: Events in Windows Forms AI AssistView control | Syncfusion
description: Learn here all about Events support in Syncfusion AI AssistView control, its elements and more details.
platform: windowsforms
control: SfAIAssistView
@@ -11,7 +11,7 @@ documentation: ug
## PromptRequest event
-This event notifies users when a prompt is submitted in the control. It can be used to validate user input before processing or trigger custom actions based on the prompt content. The input message and its details are passed through the PromptRequestEventArgs. This argument provides the following details:
+[PromptRequest](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.AIAssistView.SfAIAssistView.html#Syncfusion_WinForms_AIAssistView_SfAIAssistView_PromptRequest) event notifies users when a prompt is submitted in the control. It can be used to validate user input before processing or trigger custom actions based on the prompt content. The input message and its details are passed through the [PromptRequestEventArgs](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.AIAssistView.PromptRequestEventArgs.html). This argument provides the following details:
InputMessage : Represents the input message value of the AIAssistView.
Handled : Boolean value indicating whether the input message in the Messages collection has been handled by the event.
diff --git a/WindowsForms/AI-AssistView/Getting-Started.md b/WindowsForms/AI-AssistView/Getting-Started.md
index b27c00750..a8ef82355 100644
--- a/WindowsForms/AI-AssistView/Getting-Started.md
+++ b/WindowsForms/AI-AssistView/Getting-Started.md
@@ -1,6 +1,6 @@
---
layout: post
-title: Windows Forms AI AssistView control | Syncfusion
+title: Getting Started with Windows Forms AI AssistView control | Syncfusion
description: Learn about getting started with the Syncfusion Windows Forms AI AssistView (SfAIAssistView) control with its basic features.
platform: windowsforms
control: SfAIAssistView
@@ -9,7 +9,7 @@ documentation: ug
# Getting Started with Windows Forms AI AssistView
-This section explains the steps required to add the Windows Forms `SfAIAssistView` control with its basic features.
+This section explains the steps required to add the Windows Forms [SfAIAssistView](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.AIAssistView.SfAIAssistView.html) control with its basic features.
## Assembly Deployment
diff --git a/WindowsForms/AI-AssistView/Open-AI.md b/WindowsForms/AI-AssistView/Open-AI.md
index 091ef14e3..44ea10ade 100644
--- a/WindowsForms/AI-AssistView/Open-AI.md
+++ b/WindowsForms/AI-AssistView/Open-AI.md
@@ -1,6 +1,6 @@
---
layout: post
-title: Windows Forms AI AssistView control | Syncfusion
+title: OpenAI in Windows Forms AI AssistView control | Syncfusion
description: Learn about how to connect the AI AssistView control with OpenAI and chat gpt conversation experience.
platform: windowsforms
control: SfAIAssistView
@@ -14,9 +14,9 @@ This section explains about how to connect the AI AssistView with OpenAI.
## Creating an application with NuGet reference.
1. Create a [Windows Forms app](https://learn.microsoft.com/en-us/visualstudio/ide/create-csharp-winform-visual-studio?view=visualstudio).
-2. Add reference to [Syncfusion.SfAIAssistView.WinForms](https://www.nuget.org/packages) NuGet.
+2. Add reference to [Syncfusion.SfAIAssistView.WinForms](https://www.nuget.org/packages/Syncfusion.SfAIAssistView.WinForms) NuGet.
3. Import the control namespace `Syncfusion.WinForms.AIAssistView` in C# code.
-4. Initialize the `SfAIAssistView` control.
+4. Initialize the [SfAIAssistView](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.AIAssistView.SfAIAssistView.html) control.
5. Add reference to [Microsoft Semantic NuGet](https://www.nuget.org/packages/Microsoft.SemanticKernel) NuGet.
## Creating the OpenAI view model class.
@@ -206,4 +206,7 @@ public partial class Form1 : Form
{% endtabs %}
-
\ No newline at end of file
+
+
+N> You can also explore our [WinForms AIAssistView example demos](https://github.com/syncfusion/winforms-demos/tree/master/assistview)
+
diff --git a/WindowsForms/AI-AssistView/Overview.md b/WindowsForms/AI-AssistView/Overview.md
index d73fed055..57ed4f18c 100644
--- a/WindowsForms/AI-AssistView/Overview.md
+++ b/WindowsForms/AI-AssistView/Overview.md
@@ -1,6 +1,6 @@
---
layout: post
-title: Windows Forms AI AssistView control | Syncfusion
+title: About Windows Forms AI AssistView control | Syncfusion
description: Learn about the introduction of Syncfusion Windows Forms AI AssistView Control (SfAIAssistView) with essential features and more.
platform: windowsforms
control: SfAIAssistView
diff --git a/WindowsForms/AI-AssistView/Suggestions.md b/WindowsForms/AI-AssistView/Suggestions.md
index 3b58f4a65..0ebec21a3 100644
--- a/WindowsForms/AI-AssistView/Suggestions.md
+++ b/WindowsForms/AI-AssistView/Suggestions.md
@@ -1,6 +1,6 @@
---
layout: post
-title: Windows Forms AI AssistView control | Syncfusion
+title: Suggestions in Windows Forms AI AssistView control | Syncfusion
description: Learn about the suggestion feature that displays AI-driven suggestions in the bottom right corner of the AI AssistView control.
platform: windowsforms
control: SfAIAssistView
@@ -9,7 +9,7 @@ documentation: ug
# Suggestions in Windows Forms AI AssistView
-By using the `Suggestions` property, the AssistView displays AI-driven suggestions in the bottom right corner, making it easy for users to quickly respond or choose from relevant options.
+By using the [Suggestions](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.AIAssistView.SfAIAssistView.html#Syncfusion_WinForms_AIAssistView_SfAIAssistView_Suggestions) property, the AssistView displays AI-driven suggestions in the bottom right corner, making it easy for users to quickly respond or choose from relevant options.
{% tabs %}
diff --git a/WindowsForms/AI-AssistView/Typing-Indicator.md b/WindowsForms/AI-AssistView/Typing-Indicator.md
index 8c2110642..b77bc2b45 100644
--- a/WindowsForms/AI-AssistView/Typing-Indicator.md
+++ b/WindowsForms/AI-AssistView/Typing-Indicator.md
@@ -1,6 +1,6 @@
---
layout: post
-title: Windows Forms AI AssistView control | Syncfusion
+title: Typing Indicator in Windows Forms AI AssistView control | Syncfusion
description: Learn about the typing indicator feature displayed in the AI AssistView control while the AI processes or generates a response.
platform: windowsforms
control: SfAIAssistView
@@ -9,9 +9,9 @@ documentation: ug
# Typing Indicator in Windows Forms AI AssistView
-By using the `TypingIndicator` property, a typing indicator is shown while the AI is processing or generating a response, giving users real-time feedback and enhancing conversational flow.
+By using the [TypingIndicator](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.AIAssistView.SfAIAssistView.html#Syncfusion_WinForms_AIAssistView_SfAIAssistView_TypingIndicator) property, a typing indicator is shown while the AI is processing or generating a response, giving users real-time feedback and enhancing conversational flow.
-When the application runs, the TypingIndicator will show an animation representing the AI or user typing a message. This indicator is shown when the `ShowTypingIndicator` property value as true.
+When the application runs, the TypingIndicator will show an animation representing the AI or user typing a message. This indicator is shown when the [ShowTypingIndicator](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.AIAssistView.SfAIAssistView.html#Syncfusion_WinForms_AIAssistView_SfAIAssistView_ShowTypingIndicator) property value as true.
{% tabs %}
diff --git a/WindowsForms/AI-AssistView/aiassistview_images/windowsforms_aiassistview_custom_botview.png b/WindowsForms/AI-AssistView/aiassistview_images/windowsforms_aiassistview_custom_botview.png
new file mode 100644
index 000000000..66a643b1d
Binary files /dev/null and b/WindowsForms/AI-AssistView/aiassistview_images/windowsforms_aiassistview_custom_botview.png differ
diff --git a/WindowsForms/AI-AssistView/aiassistview_images/windowsforms_aiassistview_custom_userview.png b/WindowsForms/AI-AssistView/aiassistview_images/windowsforms_aiassistview_custom_userview.png
new file mode 100644
index 000000000..b2fbcc919
Binary files /dev/null and b/WindowsForms/AI-AssistView/aiassistview_images/windowsforms_aiassistview_custom_userview.png differ
diff --git a/WindowsForms/AI-AssistView/aiassistview_images/windowsforms_aiassistview_customization.gif b/WindowsForms/AI-AssistView/aiassistview_images/windowsforms_aiassistview_customization.gif
new file mode 100644
index 000000000..b9015c0b1
Binary files /dev/null and b/WindowsForms/AI-AssistView/aiassistview_images/windowsforms_aiassistview_customization.gif differ
diff --git a/WindowsForms/AI-AssistView/aiassistview_images/windowsforms_aiassistview_customize_bannerview.png b/WindowsForms/AI-AssistView/aiassistview_images/windowsforms_aiassistview_customize_bannerview.png
new file mode 100644
index 000000000..440d7dd00
Binary files /dev/null and b/WindowsForms/AI-AssistView/aiassistview_images/windowsforms_aiassistview_customize_bannerview.png differ
diff --git a/WindowsForms/CheckBox/CheckBoxAdv-Settings.md b/WindowsForms/CheckBox/CheckBoxAdv-Settings.md
index a637bfd8a..01b4a038c 100644
--- a/WindowsForms/CheckBox/CheckBoxAdv-Settings.md
+++ b/WindowsForms/CheckBox/CheckBoxAdv-Settings.md
@@ -95,11 +95,11 @@ Gets or sets the string value.
|
BoolValue |
-Gets or sets a value indicating the check state. This property can be set to use bool values for data binding. Refer {{'[Frequently Asked Questions section](https://help.syncfusion.com/windowsforms/checkbox/faq/how-to-databind-a-checkboxadv-to-an-sql-database-if-the-corresponding-datatable-field-is-boolean)' | markdownify }}. |
+Gets or sets a value indicating the check state. This property can be set to use bool values for data binding. Refer {{'[Frequently Asked Questions section](https://help.syncfusion.com/windowsforms/checkbox/faq/how-to-databind-a-checkboxadv-to-integer-field-data-in-sql-database)' | markdownify }}.
|
IntValue |
-Gets or sets the int value. Refer {{'[Frequently Asked Questions section](https://help.syncfusion.com/windowsforms/checkbox/faq/how-to-databind-a-checkboxadv-to-an-sql-database-if-the-corresponding-datatable-field-is-a-bit-field)' | markdownify }} |
+Gets or sets the int value. Refer {{'[Frequently Asked Questions section](https://help.syncfusion.com/windowsforms/checkbox/faq/how-to-databind-a-checkboxadv-to-bit-field-data-in-sql-database)' | markdownify }}
{% tabs %}
diff --git a/WindowsForms/Release-notes/v33.1.46.md b/WindowsForms/Release-notes/v33.1.46.md
new file mode 100644
index 000000000..91eae8161
--- /dev/null
+++ b/WindowsForms/Release-notes/v33.1.46.md
@@ -0,0 +1,91 @@
+---
+title: Essential Studio® for Windows Forms Release Notes - v33.1.46
+description: Learn here about the controls in the Essential Studio® for Windows Forms Weekly Nuget Release - Release Notes - v33.1.46
+platform: windowsforms
+documentation: ug
+---
+
+# Essential Studio® for Windows Forms - v33.1.46 Release Notes
+
+{% include release-info.html date="March 31, 2026" version="v33.1.46" passed="9066" failed="0" %}
+
+{% directory path: _includes/release-notes/v33.1.46 %}
+
+{% include {{file.url}} %}
+
+{% enddirectory %}
+
+## Test Results
+
+| Component Name | Test Cases | Passed | Failed | Remarks |
+|----------------|------------|--------|--------|---------|
+| AutoComplete | 58 | 58 | 0 | All Passed |
+| AutoLabel | 3 | 3 | 0 | All Passed |
+| Breadcrumb | 1 | 1 | 0 | All Passed |
+| Button | 4 | 4 | 0 | All Passed |
+| ButtonAdv | 3 | 3 | 0 | All Passed |
+| Calendar | 1 | 1 | 0 | All Passed |
+| Carousel | 7 | 7 | 0 | All Passed |
+| Chart | 333 | 333 | 0 | All Passed |
+| CheckBox | 134 | 134 | 0 | All Passed |
+| Color Picker | 28 | 28 | 0 | All Passed |
+| Color Picker DropDown | 3 | 3 | 0 | All Passed |
+| ComboBox | 95 | 95 | 0 | All Passed |
+| ComboBoxAdv | 339 | 339 | 0 | All Passed |
+| ComboDropDown | 2 | 2 | 0 | All Passed |
+| CommandBarController | 1 | 1 | 0 | All Passed |
+| CurrencyEdit | 1 | 1 | 0 | All Passed |
+| DataGrid | 938 | 938 | 0 | All Passed |
+| DateTimePicker | 104 | 104 | 0 | All Passed |
+| DateTimePickerAdv | 44 | 44 | 0 | All Passed |
+| Digital Gauge | 7 | 7 | 0 | All Passed |
+| Docking Manager | 1965 | 1965 | 0 | All Passed |
+| DomainUpDownExt | 3 | 3 | 0 | All Passed |
+| DoubleTextBox | 3 | 3 | 0 | All Passed |
+| FontListBox | 2 | 2 | 0 | All Passed |
+| Form | 23 | 23 | 0 | All Passed |
+| Gradient Panel | 4 | 4 | 0 | All Passed |
+| GroupView | 2 | 2 | 0 | All Passed |
+| HTML Viewer | 53 | 53 | 0 | All Passed |
+| Image Streamer | 1 | 1 | 0 | All Passed |
+| Linear Gauge | 58 | 58 | 0 | All Passed |
+| ListView | 65 | 65 | 0 | All Passed |
+| Menu | 3 | 3 | 0 | All Passed |
+| MessageBox | 2 | 2 | 0 | All Passed |
+| Metro Form | 26 | 26 | 0 | All Passed |
+| MonthCalendarAdv | 25 | 25 | 0 | All Passed |
+| Multicolumn ComboBox | 8 | 8 | 0 | All Passed |
+| Multicolumn TreeView | 103 | 103 | 0 | All Passed |
+| Navigation Drawer | 52 | 52 | 0 | All Passed |
+| Navigation Pane | 37 | 37 | 0 | All Passed |
+| Numeric TextBox | 5 | 5 | 0 | All Passed |
+| NumericUpdown | 6 | 6 | 0 | All Passed |
+| Office 2007 Form | 61 | 61 | 0 | All Passed |
+| PercentTextBox | 1 | 1 | 0 | All Passed |
+| Pivot Chart | 124 | 124 | 0 | All Passed |
+| Pivot Grid | 216 | 216 | 0 | All Passed |
+| Popup | 4 | 4 | 0 | All Passed |
+| Progress Bar | 4 | 4 | 0 | All Passed |
+| Radial Gauge | 85 | 85 | 0 | All Passed |
+| Radial Menu | 2 | 2 | 0 | All Passed |
+| Radial Slider | 12 | 12 | 0 | All Passed |
+| Range Slider | 5 | 5 | 0 | All Passed |
+| Rating Control | 1 | 1 | 0 | All Passed |
+| Ribbon | 1489 | 1489 | 0 | All Passed |
+| Scroll Frame | 1 | 1 | 0 | All Passed |
+| SfDataPager | 95 | 95 | 0 | All Passed |
+| Spell Checker | 51 | 51 | 0 | All Passed |
+| Splash Screen | 2 | 2 | 0 | All Passed |
+| Split Button | 15 | 15 | 0 | All Passed |
+| StatusStrip | 18 | 18 | 0 | All Passed |
+| SuperToolTip | 1 | 1 | 0 | All Passed |
+| Syntax Editor | 524 | 524 | 0 | All Passed |
+| Tabbed Form | 25 | 25 | 0 | All Passed |
+| TabbedMdiManager | 481 | 481 | 0 | All Passed |
+| TabControl | 724 | 724 | 0 | All Passed |
+| TextBox | 13 | 13 | 0 | All Passed |
+| ToolBar | 5 | 5 | 0 | All Passed |
+| TrackBar | 1 | 1 | 0 | All Passed |
+| Tree Navigator | 17 | 17 | 0 | All Passed |
+| TreeView | 443 | 443 | 0 | All Passed |
+| XpTaskbar | 94 | 94 | 0 | All Passed |
\ No newline at end of file