How to build report pages in the background, and forcibly interrupt report...
The following example demonstrates how to generate report pages in the background, so that ready pages are displayed in the PrintControl, and the progress bar shows the current state of report...
View ArticleHow to load image tiles from another source by creating custom data provider
This example illustrates how to implement a custom provider of image tiles. For this it's necessary to create a MapDataProviderBase class descendant and assign it to the ImageTilesLayer.DataProvider...
View ArticleHow to provide a custom pushpin for a map
This example demonstrates how to implement a custom pushpin using its template. Question CommentsAdded By: Edgar Vicent at: 1/7/2015 11:15:57 AM This example has a bug with the version V2014 vol...
View ArticleHow to use XtraSpellChecker in XAF
ScenarioThis example demonstrates how to incorporate the XtraSpellChecker to XAF applications.Steps to implement1. Copy the Spelling.Win project into your solution and build it;2. Invoke the...
View ArticleCellTemplate with different colors for Ordinary, Total, Selected(Focused) cells
This example demonstrates how to create a custom PivotGridField.CellTemplate that uses different colors for different cell types (Ordinary cells, Total cells, Selected cells)BTW: In addition, it is...
View ArticleHow to reopen a broken connection when using a PostgreSQL database
This example demonstrates how to create an IDataStore wrapper for the PostgreSqlConnectionProvider and implement the functionality for recreating broken connections.Question CommentsAdded By: André...
View ArticleHow to make GridControl immediately save changes in a cell after editing
This example shows how to update GridControl's data source right after a cell editor value has been changed. To implement this scenario, we created a custom helper class exposing the...
View ArticleHow to Customize a WinForms Ribbon Template
This example demonstrates how to customize WinForms Ribbon Templates. For details, refer to the How to: Customize a WinForms Template topic in XAF documentation.See also: How to Customize a WinForms...
View ArticleHow to: Customize cylindrical equal-area projection
This example demonstrates how to customize cylindrical equal-area projection.
View ArticleHow to: Add vector items to a map using Xaml
This example demonstrates how to add vector items to a map via Xaml.
View ArticleHow not to serialize certain properties in GridControl
This example demonstrates how to exclude specific properties from serialization. To accomplish this task, handle the DXSerializer.AllowProperty event for an object whose property shouldn't be...
View ArticleScaffolding Wizards - How to create a custom filter
This example demonstrates how to create a custom filter. For more information, refer to the corresponding help topic.You can encounter the following exception:A first chance exception of type...
View ArticleScaffolding Wizards - How to add a new detail collection
This example demonstrates how to add a new detail collection to an existing project.. For more information, refer to the corresponding help topic.You can encounter the following exception:A first...
View ArticleHow To: Implement Many-to-many Relations Editing
This example shows how to implement many-to-many relations editing in an application generated with the DevExpress Scaffolding Wizard.The resulting application supports adding multiple Course objects...
View ArticleScaffolding Wizards - How to show validation errors when IDataErrorInfo is used
This example demonstrates how to show validation errors when IDataErrorInfo is used. For more information, refer to the corresponding help topic.You can encounter the following exception:A first chance...
View ArticleHow to build a fully-functional and well-organized MVVM application in a few...
This Code Central example is part of a tutorial that demonstrates how to build a fully functional and well-organized MVVM application in a few clicks: Getting Started. You can also watch the WPF...
View ArticleHow to: Build an Office-inspired Application
This example demonstrates how to build an Office-inspired application with DevExpress Scaffolding Wizards.Refer to a corresponding tutorial in DevExpress Documentation to learn step-by-step how to...
View ArticleASPxReportDesigner - How to add/edit/remove DataSourses in the web report...
This example demonstrates how you can modify the list of DataSources that is passed to the ASPxReportDesigner on the fly. Description:To run the DataSource wizard, open the ASPxReportDesigner menu and...
View ArticleHow to use WinUIDialogWindow and WinUIMessageBox controls
This Code Example demonstrates how to use the WinUIDialogWindow and WinUIMessageBox controls. The example contains two projects: one demonstrates how to use the controls in the MVVM pattern, and the...
View ArticleBest Practices of Implementing the IDataDictionary/IDisplayNameProvider...
Description: I'm using the System.Collections.Generic.List collection as a report's datasource. I set it like this:[C#]List<MyObject>list=newList<MyObject>();report.Datasource=list;How do I...
View Article