LeXtudio.DevFlow.Agent.WinForms 0.1.11

Prefix Reserved
dotnet add package LeXtudio.DevFlow.Agent.WinForms --version 0.1.11
                    
NuGet\Install-Package LeXtudio.DevFlow.Agent.WinForms -Version 0.1.11
                    
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="LeXtudio.DevFlow.Agent.WinForms" Version="0.1.11" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="LeXtudio.DevFlow.Agent.WinForms" Version="0.1.11" />
                    
Directory.Packages.props
<PackageReference Include="LeXtudio.DevFlow.Agent.WinForms" />
                    
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 LeXtudio.DevFlow.Agent.WinForms --version 0.1.11
                    
#r "nuget: LeXtudio.DevFlow.Agent.WinForms, 0.1.11"
                    
#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 LeXtudio.DevFlow.Agent.WinForms@0.1.11
                    
#: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=LeXtudio.DevFlow.Agent.WinForms&version=0.1.11
                    
Install as a Cake Addin
#tool nuget:?package=LeXtudio.DevFlow.Agent.WinForms&version=0.1.11
                    
Install as a Cake Tool

LeXtudio.DevFlow.Agent.WinForms

WinForms-specific DevFlow runtime package for instrumenting classic WinForms applications.

This package builds on LeXtudio.DevFlow.Agent.Core and adds the WinForms visual tree walker, screenshot capture, and UI interaction support required for WinForms application automation.

Install

dotnet add package LeXtudio.DevFlow.Agent.WinForms

What is included

  • WinForms visual tree inspection
  • live screenshot capture from the application window
  • element and selector screenshot capture
  • mouse/tap action support for WinForms elements
  • text input, clear, focus, key, and scroll actions for supported controls
  • integration with the shared DevFlow HTTP API

Usage

Register the WinForms DevFlow agent in your application startup:

using System.Windows.Forms;
using LeXtudio.DevFlow.Agent.WinForms;
using Microsoft.Maui.DevFlow.Agent.Core;

internal static class Program
{
    [STAThread]
    private static void Main()
    {
        ApplicationConfiguration.Initialize();

        var form = new MainForm();
        var context = new ApplicationContext(form);
        context.AddWinFormsDevFlowAgent(new AgentOptions { Port = 9223 });

        Application.Run(context);
    }
}

Getting Started

For a complete sample, see WinFormsDevFlowTestApp in this repository.

For common agent endpoints and port configuration notes, see the top-level DevFlow README.

Compatibility

  • .NET 8.0+ on Windows
  • WinForms applications only
Product Compatible and additional computed target framework versions.
.NET net8.0-windows7.0 is compatible.  net9.0-windows was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.1.11 81 5/27/2026
0.1.10 71 5/26/2026
0.1.9 82 5/25/2026
0.1.8 81 5/25/2026