AlphaOmega.ObjectListView 2.9.10

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

ObjectListView

Auto build Nuget

Overview

ObjectListView is an enhanced Windows Forms ListView replacement for displaying and editing rich tabular object data with minimal boilerplate. It adds strong typing, data binding helpers, virtual mode data sources, filtering, grouping, sorting, column formatting, cell editing and custom rendering (images, progress bars, checkboxes) while remaining a drop‑in WinForms control.

Features

  • Bind collections of POCO objects (SetObjects / AddObject / RemoveObject)
  • Virtual list data source for large datasets
  • Per column: sorting, grouping, filtering, formatting, tooltips
  • Fast text filtering (TextMatchFilter etc.)
  • Custom cell renderers (images, progress bars, check states)
  • Inline cell editing
  • Column definitions via OLVColumn (AspectName, AspectGetter, AspectToStringFormat)
  • Alternate row styling, selection decoration, hot item hints
  • Multi-target: .NET 3.5, 6, 7, 8 + .NET Framework 4.8
  • Strongly named & signed assembly

Install

NuGet: dotnet add package AlphaOmega.ObjectListView

Quick usage

var olv = new ObjectListView { Dock = DockStyle.Fill }; // drop onto a Form
olv.Columns.Add(new OLVColumn("Name", "Name") { Width = 150 });
olv.Columns.Add(new OLVColumn("Status", "Status"));
olv.SetObjects(items); // items = IEnumerable<YourType>

Filtering example:

olv.AdditionalFilter = TextMatchFilter.Contains(olv, "search text");
olv.UpdateColumnFiltering();

Virtual mode (large data): implement IVirtualListDataSource and assign to VirtualListDataSource.

What's new

  1. Fixed runtime error related to internal field changes in .NET 7+ Windows Forms.
  2. Added assembly signature (PublicKeyToken=a8ac5fc45c3adb8d).
  3. Added PE file signing (S/N: 00c18bc05b61a77408c694bd3542d035).
  4. Added CI/CD pipelines.
  5. Added .NET 6, 7, 8 support (.NET 3.5 still available).

Compatibility

WinForms only. Incompatible with WPF because some logic relies on Application.Idle which does not fire in WPF by default.

License

MIT (see repository).

Product Compatible and additional computed target framework versions.
.NET net6.0-windows7.0 is compatible.  net7.0-windows was computed.  net7.0-windows7.0 is compatible.  net8.0-windows was computed.  net8.0-windows7.0 is compatible.  net9.0-windows was computed.  net10.0-windows was computed. 
.NET Framework net35 is compatible.  net40 was computed.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 3.5

    • No dependencies.
  • net6.0-windows7.0

    • No dependencies.
  • net7.0-windows7.0

    • No dependencies.
  • net8.0-windows7.0

    • No dependencies.

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
2.9.10 238 10/16/2025
2.9.9 128 10/11/2025
2.9.8 114 10/10/2025
2.9.7 198 10/9/2025