PageView Item for Creating New Page in C#.NET
KetticPageView .NET component provides the support of creating a new page at run time for the end user. This is accomplished by clicking the NewPageItem included in the control. This NewPageItem is able to fire an event for the users of the KetticPageView control to determine a specific action, like creating a new KetticPageViewPage.
Enable the NewPageItem in C#.NET
The NewPageItem can be enabled by configuring the NewPageItemVisibility property of the KetticPageViewStripElement. The NewPageItemVisibility property is an enumeration type and has valid values, including, Hidden, Front, and End.
The C# code below demonstrate how to customize the NewPageItemVisibility property,
Create New Page using NewPageItem Event in C#.NET
To create a new PageViewPage, the end users need to click the NewPageItem, which will fire the NewPageRequest event. Then, the users can create a new KetticPageViewPage instance and add the instance to KetticPageView. To make the item fully visible, we should call the ItemVisible method. The C# code below demonstrates how to accomplish this.
| ![]() UI Controlsfor Windows Forms .NET WinForms UI Overview.NET WinForms UI Features.NET WinForms UI GuideC# WinForms UI DesignVB.NET WinForms UI DesignWinForms UI Controls WinForms Buttons UI Control WinForms Calendar UI ControlWinForms Carousel UI ControlWinForms Chart UI ControlWinForms Clock UI ControlCommandBar UI ControlWinForms Dock UI ControlDesktop Alert UI ControlDropDown List UI ControlWinForms Editor UI ControlForms and Dialogs UI ControlWinForms GridView UI ControlWinForms ListView UI ControlWinForms Menu UI ControlWinForms ComboBox UI ControlWinForms PageView UI ControlPage View - StripViewScrolling and OverflowNew ItemPage View - OutlookViewOverflow GripOverflow MenuPage View - ExplorerBarViewCustomizationPage View - StackViewSelection ModeStack PositionPage View - BackStageViewCustomizationPage View - Add PagesPage View - LocalizationPanels and Labels UI ControlWinForms Panorama UI ControlWinForms PDFViewer UI ControlWinForms Property Grid UI ControlWinForms Ribbon UI ControlWinForms PivotGrid UI ControlWinForms RichTextBox UI ControlWinForms Rotator UI ControlWinForms Scheduler UI ControlWinForms Shortcuts UI ControlWinForms SpellChecker UI ControlWinForms Track & Status UI ControlWinForms TreeView UI ControlWinForms Wizard UI ControlWinForms Test UI ControlWinForms Theme UI Control |