DevExpress.AIIntegration.WinForms.Reporting 26.1.5

Prefix Reserved
dotnet add package DevExpress.AIIntegration.WinForms.Reporting --version 26.1.5
                    
NuGet\Install-Package DevExpress.AIIntegration.WinForms.Reporting -Version 26.1.5
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="DevExpress.AIIntegration.WinForms.Reporting" Version="26.1.5" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DevExpress.AIIntegration.WinForms.Reporting" Version="26.1.5" />
                    
Directory.Packages.props
<PackageReference Include="DevExpress.AIIntegration.WinForms.Reporting" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add DevExpress.AIIntegration.WinForms.Reporting --version 26.1.5
                    
#r "nuget: DevExpress.AIIntegration.WinForms.Reporting, 26.1.5"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package DevExpress.AIIntegration.WinForms.Reporting@26.1.5
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=DevExpress.AIIntegration.WinForms.Reporting&version=26.1.5
                    
Install as a Cake Addin
#tool nuget:?package=DevExpress.AIIntegration.WinForms.Reporting&version=26.1.5
                    
Install as a Cake Tool

AI-powered Extensions for DevExpress WinForms Report Designer

The DevExpress.AIIntegration.WinForms.Reporting package provides AI-powered extensions for the DevExpress WinForms Report Designer. These extensions allow users to create, modify, and localize reports with natural language commands.

Key Features

  • "Prompt-to-Report" - Users can create a report layout from a natural language description.
  • Modify Reports - Users can chat with an AI Assistant to adjust a report layout. This functionality is available in applications that target .NET 8 or later.
  • AI-generated Test Data - An AI assistant can generate test data so users can preview reports without connecting to a live data source.
  • Localize Reports - Users can click "Localize with AI" in the Localization Editor to translate all localizable property values into the selected language.
  • "Prompt-to-Expression" - Users can create valid expressions from natural language descriptions.

Examples

  1. In a WinForms application with the ReportDesigner component, install the DevExpress AI Integration package:

    dotnet add package DevExpress.AIIntegration.WinForms.Reporting
    
  2. Install packages required for your preferred AI service. See supported AI services for additional information.

  3. Register your AI service at application startup:

    using Azure.AI.OpenAI;
    using DevExpress.AIIntegration;
    using Microsoft.Extensions.AI;
    using System.ClientModel;
    
    internal static class Program {
        static string AzureOpenAIEndpoint { get { return "AZURE_OPENAI_ENDPOINT"; } }
        static string AzureOpenAIKey { get { return "AZURE_OPENAI_APIKEY"; } }
        static string DeploymentName { get { return "MODEL_NAME"; } } // For example, gpt-5.2.
        [STAThread]
        static void Main(){
            IChatClient client = new AzureOpenAIClient(
                new Uri(AzureOpenAIEndpoint),
                new ApiKeyCredential(AzureOpenAIKey))
                    .GetChatClient(DeploymentName).AsIChatClient(); 
            AIExtensionsContainerDesktop.Default.RegisterChatClient(client);
            ApplicationConfiguration.Initialize();
            Application.Run(new Form1());
        }
    }
    
  4. Register required extensions (behaviors) and attach them to the WinForms Report Designer control:

    using DevExpress.AIIntegration.WinForms.Reporting;
    // ...
    public partial class Form1 : Form {
        public Form1() {
            InitializeComponent();
            behaviorManager1.Attach<ReportPromptToReportBehavior>(reportDesigner1, behavior => {
            // ...
            });
        }
    }
    
  5. Call the BehaviorInitializer.Initialize() method at application startup if your project targets the .NET Framework and you create AI-powered behaviors in code.

    internal static class Program {
        [STAThread]
        static void Main() {
            //...
            // The Initialize() method forcibly initializes the behavior manager in .NET Framework apps.
            DevExpress.AIIntegration.WinForms.Reporting.BehaviorInitializer.Initialize();
            Application.Run(new Form1());
        }
    }
    

Evaluation Period, Pricing Options, and Licensing Terms

Whether you own a license or want to start a 30-day evaluation period, register your DevExpress license key. To obtain your key, log in to the DevExpress Download Manager. Use your existing DevExpress.com account or create a new account for free. For additional registration instructions, see License Key for DevExpress Products.

If you purchase a license after evaluating a product, re-register your updated DevExpress license key to remove evaluation version warnings/messages.

This package is included in the following commercial subscriptions:

See DevExpress Subscriptions & Licensing for subscription comparison tables, purchasing FAQ, and licensing information.

Documentation

Software Bill of Materials (SBOM)

To access SBOM files for DevExpress packages, please refer to the following article: Software Bill of Materials (SBOM) for DevExpress .NET assemblies/NuGet packages, JavaScript, VCL and other redistributable artifacts.

See Also: Information Security | Security - What You Need to Know

Useful Online Resources

Product Compatible and additional computed target framework versions.
.NET net8.0-windows is compatible.  net9.0-windows was computed.  net10.0-windows was computed. 
.NET Framework net472 is compatible.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (4)

Showing the top 4 NuGet packages that depend on DevExpress.AIIntegration.WinForms.Reporting:

Package Downloads
DevExpress.AIIntegration.WinForms.Reporting.de

Target Platform/Framework: Cross-Platform DevExpress Product Libraries Used: DevExpress AI-powered Extensions for OpenAI, Azure, Ollama, Semantic Kernel (https://www.devexpress.com/ai) Available in the following DevExpress Subscription(s): Universal, DXperience, WinForms, Reporting

DevExpress.AIIntegration.WinForms.Reporting.es

Target Platform/Framework: Cross-Platform DevExpress Product Libraries Used: DevExpress AI-powered Extensions for OpenAI, Azure, Ollama, Semantic Kernel (https://www.devexpress.com/ai) Available in the following DevExpress Subscription(s): Universal, DXperience, WinForms, Reporting

DevExpress.AIIntegration.WinForms.Reporting.ja

Target Platform/Framework: Cross-Platform DevExpress Product Libraries Used: DevExpress AI-powered Extensions for OpenAI, Azure, Ollama, Semantic Kernel (https://www.devexpress.com/ai) Available in the following DevExpress Subscription(s): Universal, DXperience, WinForms, Reporting

DevExpress.ExpressApp.AI.Win

Target Platform/Framework: Desktop DevExpress Product Libraries Used: XAF (Cross-Platform .NET App UI & Web API) (https://www.devexpress.com/xaf) Available in the following DevExpress Subscription(s): Universal

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
26.1.5 115 9/18/2026
26.1.5-pre-26248 121 9/11/2026
26.1.5-pre-26241 137 9/2/2026
26.1.5-pre-26235 140 8/26/2026
26.1.5-pre-26227 149 8/18/2026
26.1.4 500 8/7/2026
26.1.3 759 6/18/2026
25.2.9 126 8/3/2026
25.2.8 160 6/10/2026
25.2.7 439 5/6/2026
25.2.6 295 4/7/2026
25.1.13 137 7/31/2026
25.1.12 131 6/10/2026
25.1.11 129 5/5/2026
25.1.10 145 4/6/2026
25.1.9 139 3/2/2026
Loading failed