How to apply WinForms ScrollersFrame to UserControl?
The WinForms ScrollersFrame can be attached to UserControl by using its AttachFrame function. The ScrollersFrame is assigned to all the controls by using its AttachedTo property.
C#
//Enables the AutoScroll property to assign the ScrollersFrame
this.gradientPanel1.AutoScroll = true;
//Attaches the ScrollersFrame to GradientPanel
this.scrollersFrame1.AttachedTo = gradientPanel1;
//This function is used to assign the ScrollersFrame to windows form control
this.scrollersFrame1.AttachFrame(this.gradientPanel1);
//Sets ScrollersFrame visualstyle
this.scrollersFrame1.VisualStyle = Syncfusion.Windows.Forms.ScrollBarCustomDrawStyles.Office2010;VB
'Enables the AutoScroll property to assign the ScrollersFrame
Me.gradientPanel1.AutoScroll = True
'Attaches the ScrollersFrame to GradientPanel
Me.scrollersFrame1.AttachedTo = gradientPanel1
'This function is used to assign the ScrollersFrame to windows form control
Me.scrollersFrame1.AttachFrame(Me.gradientPanel1)
'Sets ScrollersFrame visualstyle
Me.scrollersFrame1.VisualStyle = Syncfusion.Windows.Forms.ScrollBarCustomDrawStyles.Office2010Note: The previously attached control is released by using the function named “AttachFrame”.

Figure 1: ScrollersFrame is attached to Gradient panel.
Conclusion
I hope you enjoyed learning about how to apply WinForms ScrollersFrame to UserControl.
You can refer to our WinForms ScrollersFrame’s feature tour page to know about its other groundbreaking feature representations. You can also explore our documentation to understand how to present and manipulate data.
For current customers, you can check out our WinForms components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our WinForms ScrollersFrame and other WinForms components.
If you have any queries or require clarifications, please let us know in comments below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!