$99 VS $1000+. UI Control for ASP.NET AJAX(contains chart and gridview).
PageView WinForms Control
Create slick looking tab strip or panel, overlapping tabs, organize content, insert images into items
Home > WinForms UI Controls > User Manual > Add Page in C#

Add Pages to KetticPageView using C# Code

The PageView Control for Windows Forms has pretty excellent performance when managing large amounts of page views. By using this PageView Control, developers can easily build slick appearance tab strip and panel bar, mimic Navigation Pane of Outlook, vertical, hierarchical or overlapping tabs, insert images into items, add templates, and more. The PageView Control for Windows Forms provides extended architecture to views large amounts of pages.
It is possible to add KetticPageViewPages to KetticPageView WinForms control using C# code. To accomplish this, we shall create an instance of KetticPageViewPage and add the instance to the Pages collection of KetticPageView. The properties can be configured while creating the instance. The C# code below shows how to add pages to the control.

KetticPageViewPage pageOne = new KetticPageViewPage();
pageOne.Text = "Page One";
ketticPageView1.Pages.Add(pageOne);

KetticPageViewPage pageTwo = new KetticPageViewPage();
pageTwo.Text = "Page Two";
ketticPageView1.Pages.Add(pageTwo);

Add UI Controls to KetticPageViewPage

After adding pages to the KetticPageView control, we can also add other Kettic UI controls to the KetticPageViewPage using C# code. This is accomplished by adding the controls that we need to the Controls collection of the specific page. The C# code below demonstrates how to add a menu user interface control to the pages.

KetticMenu menu = new KetticMenu();
button.Text = "My Menu";
pageOne.Controls.Add(menu);

UI Controlsfor Windows Forms
.NET WinForms UI Overview.NET WinForms UI Features.NET WinForms UI GuideC# WinForms UI DesignVB.NET WinForms UI Design
WinForms UI Controls