# Quick Start

## Content



This quick start guides you through the steps of creating a simple Editor application. You begin by creating a Windows Forms App in Visual Studio, adding the Editor control to the Form and loading a document in it.

![](https://cdn.mescius.io/document-site-files/images/c8989ae3-804c-4f29-b5ce-fe6b13c0a9e3/images/quick-start.png)

Follow the given steps to create a simple Editor application in .NET Edition.

## Set Up the Application

1.  Create a new **Windows Forms App** and set the project framework to **.NET 8.0** using **Configure your new project** window.
2.  Install the **C1.Win.Editor** package using **NuGet Package Manager**. The C1Editor control gets added to the Toolbox once the package gets installed.
3.  Drag and drop the C1Editor control from **Toolbox** onto the Form.

## Load the Document

To load an HTML document in the Editor control use [LoadDocument](/componentone/docs/win/online-editor-net/#LOADDOCUMENT) method of the [C1Editor](/componentone/docs/win/online-editor-net/) class. In this example, an html document named tesla is loaded in Editor from the C drive. You can change the file path of the document based on the location of the document that you want to load from your system in the Editor control.

```csharp
c1Editor1.LoadDocument(@"C:\tesla.html");
```