Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 53 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,55 @@
# Create, View, Edit and Save Your Excel Files Using WPF Spreadsheet
This example demonstrates how to create, view, and edit the Excel files using our WPF Spreadsheet component.

## Blog reference
[Create, View, Edit and Save Your Excel Files Using WPF Spreadsheet](https://www.syncfusion.com/blogs/post/create-view-edit-and-save-your-excel-files-using-wpf-spreadsheet.aspx)
This example demonstrates how to create, view, and edit Excel files using our WPF Spreadsheet component without requiring Microsoft Excel to be installed.

## Prerequisites

Before running this project, ensure you have the following installed:

- **Visual Studio** 2019 or later
- **.NET Framework** 4.6.2 or greater or **.NET Core** 8.0 or greater

## Technologies Used

- **WPF** (Windows Presentation Foundation) + **Syncfusion Spreadsheet**

## Getting Started

### 1. Clone the Repository

Clone this repository to your local machine:

```bash
git clone https://github.com/SyncfusionExamples/capture-spreadsheet-events-wpf
cd capture-spreadsheet-events-wpf
```

### 2. Install Dependencies

Install the required Syncfusion WPF Spreadsheet packages as dependencies:

```bash
dotnet add package Syncfusion.SfSpreadsheet.WPF
dotnet add package Syncfusion.SfSpreadsheetHelper.WPF
```

Alternatively, you can restore packages using:

```bash
dotnet restore
```

### 3. Run the Application

Run the project and test the feature directly from the WPF app:

```bash
dotnet run
```

Or open the solution in Visual Studio and press `F5` to build and run the application.

## Resources

- https://help.syncfusion.com/document-processing/excel/spreadsheet/wpf/getting-started
- https://www.syncfusion.com/blogs/post/create-view-edit-and-save-your-excel-files-using-wpf-spreadsheet.aspx
Loading