How to: Build Dock UI According to MVVM Pattern Using LayoutAdapter
This example demonstrates how to build a dock UI according to the MVVM design pattern using the LayoutAdapter. More information on this approach can be found at: MVVM Support - Building Dock UIAnother...
View ArticleHow to: Save and Restore the DockLayoutManager Layout
DockLayoutManager provides several methods to save and restore layout settings:- SaveLayoutToStream;- SaveLayoutToXml;- RestoreLayoutFromStream;- RestoreLayoutFromXml.Note that item names are used to...
View ArticleHow to: Save and Restore Settings of All Controls That Are Present in the UI
Methods for saving and restoring a layout implemented in specific controls (such as DockLayoutManager.SaveLayoutToStream and DockLayoutManager.RestoreLayoutFromStream) are intended for saving/restoring...
View ArticleHow to: Serialize DockLayoutManager When TabbedDocumentUIService Is Used
Some of DockLayoutManager’s panel groups can contain documents that were created from ViewModel with IDocumentManagerService. To serialize and restore them correctly, it is necessary to perform the...
View ArticleHow to: Embed a Bar into a Dock Panel
This example shows how to embed a bar from the DXBars library into a dock panel.Dock panels embed bar containers at their top edges, allowing bars to be displayed in these containers. To add a bar to a...
View ArticleHow to: Customize a Panel's Context Menu via Actions
This example shows how to customize a panel's context menu via customization actions. Menu customization actions are added via the DockLayoutManager.ContextMenuCustomizations collection.
View ArticleHow to: Use Built-In DXDocking Commands in Custom Buttons
The DXDocking library provides a set of commands on dock panels. These are declared in the DockControllerCommand class. For instance, the Close command allows you to close a specific dock panel. The...
View ArticleHow to: Load an External Window or UserControl into a DocumentPanel
You can define a Window, Page or UserControl in external XAML files and then, with DXDocking, load their contents into DocumentPanel objects.This example demonstrates how to load an external Window and...
View ArticleHow to: Create a Navigation Menu with TreeView Similar to One Used in Outlook...
SideBarView is a NavBarControl's view that was designed to simulate the Outlook 2003 navigation bar. SideBarView can display only one group at a time. To show custom content in a group instead of...
View ArticleHow to: Use OfficeNavigationBar with NavBarControl to Navigate Between Views
This example demonstrates how to populate OfficeNavigationBar from NavBarControl and navigate between different views when items in OfficeNavigationBar are selected. To bind OfficeNavigationBar to...
View ArticleHow to: filter a XtraReport Parameter's lookup in XAF
ScenarioWhen you need to use a parameter of a type with many records in your report, it is convenient to filter the parameter's lookup.While in the XAF WinForms application this option is built in the...
View ArticleHow to: Configure a Chart for Printing
This example demonstrates how to configure chart options that are used for printing.
View ArticleHow to apply default filtering to master filters in DashboardViewer
The following example shows how to apply default filtering to master filter items using API of DashboardViewer. In this example, default filtering is applied to the following dashboard items.- The...
View ArticleHow to create a custom Table Of Contents for merged reports with page indexes
This code example illustrates how to create a custom "Table Of Contents" in a separate report. It is necessary to create links between bricks of merged reports manually, after the reports are merged....
View ArticleHow to: Build Outlook Navigation Menu Using OfficeNavigationBar and...
In Outlook 2013, you may notice a special menu at the bottom for navigation between different views. You can build such a menu with DevExpress controls using OfficeNavigationBar and NavBarControl....
View ArticleOBSOLETE - How to implement multi-row editing in the ASP.NET ListView
NOTE: Starting with version 15.2, our ASPxGridListEditor supports the Batch Edit Mode out of the box. To enable it, set the IModelListView.AllowEdit property to True and the...
View ArticleCustom GridControl - How to provide the capability to hide group footer rows...
This example demonstrates how to implement the ShowGroupFooter event which allows hiding group footer rows at a specific group level. To specify which rows should be hidden, set the e.Visible parameter...
View ArticleHow to create user folders within the Customization Form
The following example shows how to group fields in the Customization Form by putting them in user-defined folders.In this example, the Customization Form is invoked by calling the...
View ArticleHow to add DragAndDrop capability to the detail grid
This example demonstrates how to add the DragAndDrop capability to the detail grid.Our detail grid with DataControlDetailDescriptor doesn't support drag and drop. To provide this capability in this...
View ArticleASPxGridView - How to update total summaries on the client side in Batch Edit...
This example demonstrates how to update total summaries on the client side when ASPxGridView is in Batch Edit mode. To implement the required task, perform the following steps:1. Add a total summary...
View Article