Fast and powerful open-source .NET spreadsheet component for building Excel-like experiences in WinForms and WPF applications.
๐ฏ๐ต ๆฅๆฌ่ชใฎREADMEใฏใใกใ
This repository contains ReoGrid V3 (Community Edition / MIT License).
ReoGrid V4 is now available with major improvements. V4 comes in two editions โ Professional and Enterprise โ with identical features. Choose based on support duration and deployment scale.
| Feature | V3 Community (this repo) | V4 |
|---|---|---|
| WinForms support | โ | โ |
| WPF support | โ | โ (greatly improved) |
| Excel XLSX import/export | โ | โ |
| Formulas & charts | โ | โ (more functions) |
| Lazy loading (1M+ rows) | โ | โ |
| Multi-row column headers | โ | โ |
| Data source API (IDataSource) | โ | โ |
| Conditional styles | โ | โ |
| Custom conditional filters | โ | โ |
| Excel-compatible format patterns | โ | โ |
| 3-level cell lock control | โ | โ |
| WinAppDriver UI test support | โ | โ |
| Floating-point precision correction | โ | โ |
| Rendering performance | Fast | Even faster |
| Technical support | โ | โ (included) |
| License | MIT (free) | Commercial |
| Price | Free | See pricing |
| Professional | Enterprise | |
|---|---|---|
| Deployable devices | Up to 3 | Unlimited |
| Technical support | 1 month | 3 months |
| Features | Full V4 | Full V4 |
๐ Learn more & Purchase V4 ๐ง Questions? Contact us at support@reogrid.net
- Excel (XLSX) import and export via OpenXML
- Rich cell formatting (font, size, color, borders, alignment, wrapping, rotation)
- Formulas and functions (SUM, COUNT, IF, VLOOKUP, and more)
- Charts, images, and drawing objects
- Merge cells, freeze panes, and split view
- Sorting and AutoFilter (column filters)
- Cell types and controls (checkbox, dropdown, hyperlink, button, etc.)
- Grouping and outline for rows/columns
- Printing and page setup
- High performance with large worksheets
- Extensible rendering and event model
| Framework | Target |
|---|---|
| .NET 8 (Windows) | net8.0-windows7.0 |
| .NET Framework 4.8 | net48 |
.NET CLI
dotnet add package unvell.ReoGrid.DLLPackage Manager Console (Visual Studio)
Install-Package unvell.ReoGrid.DLLusing unvell.ReoGrid;
var grid = new ReoGridControl { Dock = DockStyle.Fill };
this.Controls.Add(grid);
var sheet = grid.CurrentWorksheet;
sheet["A1"] = "Hello ReoGrid";
sheet.Cells["B1"].Data = DateTime.Now;
// Load / Save XLSX
sheet.Load("input.xlsx");
sheet.Save("output.xlsx", FileFormat.Excel2007);<Window
x:Class="MyApp.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:rg="clr-namespace:unvell.ReoGrid;assembly=unvell.ReoGrid"
Title="ReoGrid WPF" Height="450" Width="800">
<Grid>
<rg:ReoGridControl x:Name="grid"/>
</Grid>
</Window>// Code-behind
var sheet = grid.CurrentWorksheet;
sheet["A1"] = "Hello ReoGrid";
sheet["B1"] = 123.45;- Full documentation, API reference, and tutorials: https://reogrid.net/document
- Getting started guide: https://reogrid.net/document/getting-started/
A runnable WPF sample project is available under the DemoWPF directory.
Contributions to V3 Community are welcome! See CONTRIBUTING.md for guidelines.
For feature requests that go beyond V3 scope, consider ReoGrid V4 Enterprise which provides a commercially-supported, actively-developed codebase.
MIT License โ Copyright (c) UNVELL Inc. 2012โ2026, All rights reserved.
See LICENSE for full text.
ReoGrid is developed and maintained by UNVELL Inc., a software company specializing in .NET UI components.
- ๐ Website: https://reogrid.net
- ๐ง Support: support@reogrid.net
- ๐ฏ๐ต Japanese page: https://reogrid.net/jp







